R語言
plot.histogram
位於 graphics
包(package)。 說明
類 "histogram"
對象的繪圖方法,通常由 hist
生成。
用法
## S3 method for class 'histogram'
plot(x, freq = equidist, density = NULL, angle = 45,
col = "lightgray", border = NULL, lty = NULL,
main = paste("Histogram of", paste(x$xname, collapse = "\n")),
sub = NULL, xlab = x$xname, ylab,
xlim = range(x$breaks), ylim = NULL,
axes = TRUE, labels = FALSE, add = FALSE,
ann = TRUE, ...)
## S3 method for class 'histogram'
lines(x, ...)
參數
x |
|
freq |
邏輯性;如果 |
col |
用於填充條形的顏色。默認值已更改為 |
border |
條形周圍邊框的顏色。 |
angle , density |
按線選擇條形陰影:請參閱 |
lty |
用於條形的線型,另請參見 |
main , sub , xlab , ylab |
|
xlim , ylim |
具有合理默認值的 x 和 y 值的範圍。 |
axes |
邏輯,指示是否應繪製軸。 |
labels |
邏輯或字符。如果不是 |
add |
合乎邏輯的。如果是 |
ann |
合乎邏輯的。是否應該繪製注釋(標題和軸標題)? |
... |
進一步graphical parameters至 |
細節
lines.histogram(*)
與 plot.histogram(*, add = TRUE)
相同。
例子
(wwt <- hist(women$weight, nclass = 7, plot = FALSE))
plot(wwt, labels = TRUE) # default main & xlab using wwt$xname
plot(wwt, border = "dark blue", col = "light blue",
main = "Histogram of 15 women's weights", xlab = "weight [pounds]")
## Fake "lines" example, using non-default labels:
w2 <- wwt; w2$counts <- w2$counts - 1
lines(w2, col = "Midnight Blue", labels = ifelse(w2$counts, "> 1", "1"))
也可以看看
相關用法
- R plot.raster 繪製光柵圖像
- R plot.factor 繪製因子變量
- R plot.table 表對象的繪圖方法
- R plot.default 默認散點圖函數
- R plot.window 設置圖形窗口的世界坐標
- R plot.xy 基本內部繪圖函數
- R plot.design 繪製設計或模型的單變量效應
- R plot.formula 散點圖的公式表示法
- 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大神的英文原創作品 Plot Histograms。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。