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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。