当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。