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