當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R plot.factor 繪製因子變量


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

數字或因子。 y 可能丟失。

legend.text

在因子 y 的情況下用於注釋 y 軸的字符向量:默認為 levels(y) 。這設置了 spineplotyaxlabels 參數。

...

barplotboxplotspineplotplot 的進一步參數(視情況而定)。所有這些都接受graphical parameters(請參閱par)並將注釋參數傳遞給titleaxes = FALSE。沒有人接受 type

例子

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

也可以看看

plot.defaultplot.formulabarplotboxplotspineplot

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Plotting Factor Variables。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。