R語言
plot.factor
位於 graphics
包(package)。 說明
此函數為通用 plot
函數的 factor
參數實現散點圖方法。
如果y
缺失,則生成barplot
。對於數字y
,使用boxplot
,對於因子y
,顯示spineplot
。對於任何其他類型的 y
,將調用下一個 plot
方法,通常是 plot.default
。
用法
## S3 method for class 'factor'
plot(x, y, legend.text = NULL, ...)
參數
x, y |
數字或因子。 |
legend.text |
在因子 |
... |
|
例子
require(grDevices)
plot(weight ~ group, data = PlantGrowth) # numeric vector ~ factor
plot(cut(weight, 2) ~ group, data = PlantGrowth) # factor ~ factor
## passing "..." to spineplot() eventually:
plot(cut(weight, 3) ~ group, data = PlantGrowth,
col = hcl(c(0, 120, 240), 50, 70))
plot(PlantGrowth$group, axes = FALSE, main = "no axes") # extremely silly
也可以看看
相關用法
- R plot.formula 散點圖的公式表示法
- R plot.histogram 繪製直方圖
- R plot.raster 繪製光柵圖像
- R plot.table 表對象的繪圖方法
- R plot.default 默認散點圖函數
- R plot.window 設置圖形窗口的世界坐標
- R plot.xy 基本內部繪圖函數
- R plot.design 繪製設計或模型的單變量效應
- R plot.data.frame DataFrame 的繪圖方法
- R points 向繪圖添加點
- R pairs 散點圖矩陣
- R polygon 多邊形繪製
- R persp 透視圖
- R pie 餅狀圖
- R par 設置或查詢圖形參數
- R polypath 路徑繪製
- R panel.smooth 簡單麵板圖
- R legend 將圖例添加到繪圖中
- R barplot 條形圖
- R stem 莖葉圖
- R mtext 將文本寫入繪圖的邊距
- R arrows 將箭頭添加到繪圖中
- R contour 顯示輪廓
- R stars 星圖(蜘蛛圖/雷達圖)和線段圖
- R box 在地塊周圍畫一個方框
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Plotting Factor Variables。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。