panel.bwplot
位于 lattice
包(package)。 说明
这是bwplot
的默认面板函数。
用法
panel.bwplot(x, y, box.ratio = 1,
box.width = box.ratio / (1 + box.ratio),
horizontal = TRUE,
pch, col, alpha, cex,
font, fontfamily, fontface,
fill, varwidth = FALSE,
notch = FALSE, notch.frac = 0.5,
...,
levels.fos,
stats = boxplot.stats,
coef = 1.5,
do.out = TRUE,
identifier = "bwplot")
参数
x , y |
数值向量或因子。如果 |
box.ratio |
箱体厚度与箱体间距之比 |
box.width |
盒子的厚度(以绝对单位表示);覆盖 |
horizontal |
合乎逻辑的。如果为 FALSE,则绘图为‘transposed’,因为 x 和 y 的行为已互换。 x 现在是‘factor’。其他论点的解释也相应改变。请参阅 |
pch , col , alpha , cex , font , fontfamily , fontface |
控制点的图形参数。 |
fill |
填充箱线图的颜色 |
varwidth |
合乎逻辑的。如果为 TRUE,则箱线图的宽度与创建箱线图时使用的点数成正比。 |
notch |
如果 |
notch.frac |
(0,1) 中的数字。当 |
stats |
一个函数,默认为 |
coef , do.out |
传递给 |
levels.fos |
与因子或木瓦变量的位置相对应的数值。供内部使用。 |
... |
进一步的争论,被忽略。 |
identifier |
附加到由此面板函数创建的 grobs 名称之前的字符串。 |
细节
为 y
的每个级别创建 x
的箱须图(如果 horizontal=FALSE
则相反)。默认情况下,实际箱线图统计数据是使用 boxplot.stats
计算的。请注意,大多数控制显示的参数都可以直接提供给高级bwplot
调用。
尽管代表中值的点的图形参数可以通过可选参数控制,但许多其他参数却不能。这些参数是从相关设置参数中获得的("box.rectangle"
为方框,"box.umbrella"
为晶须,"plot.symbol"
为异常值)。
例子
bwplot(voice.part ~ height, data = singer,
xlab = "Height (inches)",
panel = function(...) {
panel.grid(v = -1, h = 0)
panel.bwplot(...)
},
par.settings = list(plot.symbol = list(pch = 4)))
bwplot(voice.part ~ height, data = singer,
xlab = "Height (inches)",
notch = TRUE, pch = "|")
作者
Deepayan Sarkar Deepayan.Sarkar@R-project.org
也可以看看
相关用法
- R panel.barchart 条形图的默认面板函数
- R panel.xyplot xyplot 的默认面板函数
- R panel.loess 添加黄土平滑的面板函数
- R panel.axis 绘图轴刻度和标签的面板函数
- R panel.number 在绘图期间访问辅助信息
- R panel.functions 有用的面板函数组件
- R panel.parallel 并行的默认面板函数
- R panel.cloud 云默认面板函数
- R panel.pairs splom 的默认超级面板函数
- R panel.dotplot 点图的默认面板函数
- R panel.densityplot 密度图的默认面板函数
- R panel.spline 添加样条平滑的面板函数
- R panel.stripplot 带状图的默认面板函数
- R panel.smoothScatter 格子面板函数类似于 smoothScatter
- R panel.violin 创建小提琴图的面板函数
- R panel.qqmath qqmath 的默认面板函数
- R panel.superpose 分组显示面板函数
- R panel.histogram 直方图的默认面板函数
- R panel.levelplot 水平图和等高线图的面板函数
- R panel.qqmathline qqmath 的有用面板函数
- R packet.panel.default 将数据包与面板关联
- R prepanel.functions Lattice 有用的 Prepanel 函数
- R print.trellis 绘制和总结网格对象
- R prepanel.default 默认预面板函数
- R xyplot.ts 时间序列绘图方法
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Default Panel Function for bwplot。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。