dotchart
位於 graphics
包(package)。 說明
繪製克利夫蘭點圖。
用法
dotchart(x, labels = NULL, groups = NULL, gdata = NULL, offset = 1/8,
ann = par("ann"), xaxt = par("xaxt"), frame.plot = TRUE, log = "",
cex = par("cex"), pt.cex = cex,
pch = 21, gpch = 21, bg = par("bg"),
color = par("fg"), gcolor = par("fg"), lcolor = "gray",
xlim = range(x[is.finite(x)]),
main = NULL, xlab = NULL, ylab = NULL, ...)
參數
x |
數值向量或矩陣(允許 |
labels |
每個點的標簽向量。對於向量,默認使用 |
groups |
一個可選因子,指示 |
gdata |
各組的數據值。這通常是一個總結,例如每組的中位數或平均值。 |
offset |
|
ann |
|
xaxt |
指示 x 軸樣式的字符串;使用 |
frame.plot |
指示是否應在圖周圍繪製方框的邏輯。 |
log |
指示一個或另一個軸是否應為對數的字符串,請參閱 |
cex |
要使用的字符大小。將 |
pt.cex |
|
pch |
要使用的繪圖字符或符號。 |
gpch |
用於組值的繪圖字符或符號。 |
bg |
要使用的繪製字符或符號的背景顏色;使用 |
color |
用於點和標簽的顏色。 |
gcolor |
用於組標簽和值的單一顏色。 |
lcolor |
用於水平線的顏色。 |
xlim |
例如,繪圖的水平範圍,請參見 |
main |
該圖的總體標題,請參見 |
xlab , ylab |
軸注釋如 |
... |
graphical parameters 也可以指定為參數。 |
值
調用此函數是因為它的副作用,即產生兩種點圖變體,如 Cleveland (1985) 中所述。
點圖是條形圖的合理替代品。
例子
dotchart(VADeaths, main = "Death Rates in Virginia - 1940")
op <- par(xaxs = "i") # 0 -- 100%
dotchart(t(VADeaths), xlim = c(0,100), bg = "skyblue",
main = "Death Rates in Virginia - 1940", xlab = "rate [ % ]",
ylab = "Grouping: Age x Urbanity . Gender")
par(op)
參考
Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.
Cleveland, W. S. (1985) The Elements of Graphing Data. Monterey, CA: Wadsworth.
Murrell, P. (2005) R Graphics. Chapman & Hall/CRC Press.
相關用法
- R legend 將圖例添加到繪圖中
- R barplot 條形圖
- R plot.histogram 繪製直方圖
- R points 向繪圖添加點
- R stem 莖葉圖
- R mtext 將文本寫入繪圖的邊距
- R arrows 將箭頭添加到繪圖中
- R contour 顯示輪廓
- R pairs 散點圖矩陣
- R stars 星圖(蜘蛛圖/雷達圖)和線段圖
- R box 在地塊周圍畫一個方框
- R coplot 調節圖
- R smoothScatter 具有平滑密度顏色表示的散點圖
- R mosaicplot 馬賽克圖
- R bxp 從摘要中繪製箱線圖
- R plot.raster 繪製光柵圖像
- R axTicks 計算軸刻度線位置
- R curve 繪製函數圖
- R plot.factor 繪製因子變量
- R sunflowerplot 製作向日葵散點圖
- R plot.table 表對象的繪圖方法
- R units 圖形單位
- R identify 識別散點圖中的點
- R layout 指定複雜的繪圖安排
- R polygon 多邊形繪製
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Cleveland's Dot Plots。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。