R语言
singer
位于 lattice
包(package)。 说明
1979 年纽约合唱协会歌手的身高(以英寸为单位)。数据根据声部进行分组。每个声部的音域按照以下顺序升高音调:低音 2、低音 1、次中音 2、次中音 1、中音 2、中音 1、女高音 2、女高音 1。
用法
singer
格式
包含以下 2 个变量的 235 个观察值的 DataFrame 。
- 高度
-
歌手的身高(以英寸为单位)。
- voice.part
-
(无序)具有级别的因子:“
Bass 2
”、“Bass 1
”、“Tenor 2
”、“Tenor 1
”、“Alto 2
”、“Alto 1
”、“Soprano 2
”、“Soprano 1
“。
例子
# Separate histogram for each voice part (Figure 1.2 from Cleveland)
histogram(~ height | voice.part,
data = singer,
aspect = 1,
layout = c(2, 4),
nint = 15,
xlab = "Height (inches)")
# Quantile-Quantile plot (Figure 2.11 from Cleveland)
qqmath(~ height | voice.part,
data = singer,
aspect = 1,
layout = c(2,4),
prepanel = prepanel.qqmathline,
panel = function(x, ...) {
panel.grid()
panel.qqmathline(x, ...)
panel.qqmath(x, ..., grid = FALSE)
},
xlab = "Unit Normal Quantile",
ylab="Height (inches)")
作者
Documentation contributed by Kevin Wright.
来源
J.M.钱伯斯、W.S.克利夫兰、B.克莱纳和 P.A.图基。 (1983)。数据分析的图形方法。查普曼和霍尔,纽约。
参考
Cleveland, William S. (1993) Visualizing Data. Hobart Press, Summit, New Jersey.
相关用法
- R simpleTheme 生成简单主题的函数
- R simpleKey 生成简单 key 的函数
- R splom 散点图矩阵
- R strip.default 默认网格条函数
- R shingles 带状疱疹
- R standard.theme 内置图形主题
- R panel.xyplot xyplot 的默认面板函数
- R xyplot.ts 时间序列绘图方法
- R panel.bwplot bwplot 的默认面板函数
- R panel.loess 添加黄土平滑的面板函数
- R lset 修改网格设置的接口 - 已失效
- R panel.axis 绘图轴刻度和标签的面板函数
- R Rows 从列表中提取行
- R panel.number 在绘图期间访问辅助信息
- R trellis.par.get 网格显示的图形参数
- R update.trellis 检索和更新网格对象
- R barley 明尼苏达州大麦试验的产量数据
- R panel.functions 有用的面板函数组件
- R prepanel.functions Lattice 有用的 Prepanel 函数
- R xyplot 常见的二变量网格图
- R panel.parallel 并行的默认面板函数
- R print.trellis 绘制和总结网格对象
- R panel.cloud 云默认面板函数
- R packet.panel.default 将数据包与面板关联
- R levelplot 水平图和等高线图
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Heights of New York Choral Society singers。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。