R語言
boxplot.matrix
位於 graphics
包(package)。 說明
將矩陣的列(或行)解釋為不同的組,為每個組繪製箱線圖。
用法
## S3 method for class 'matrix'
boxplot(x, use.cols = TRUE, ...)
參數
x |
一個數字矩陣。 |
use.cols |
邏輯指示是否應繪製列(默認情況下)或行( |
... |
|
值
boxplot
的列表。
例子
## Very similar to the example in ?boxplot
mat <- cbind(Uni05 = (1:100)/21, Norm = rnorm(100),
T5 = rt(100, df = 5), Gam2 = rgamma(100, shape = 2))
boxplot(mat, main = "boxplot.matrix(...., main = ...)",
notch = TRUE, col = 1:4)
作者
Martin Maechler, 1995, for S+, then R package sfsmisc
.
也可以看看
boxplot.default
現在已經可以與 data.frames 一起使用; boxplot.formula
、 plot.factor
與分組因子(更一般的概念)一起使用。
相關用法
- R boxplot 箱線圖
- R box 在地塊周圍畫一個方框
- R barplot 條形圖
- R bxp 從摘要中繪製箱線圖
- R legend 將圖例添加到繪圖中
- R plot.histogram 繪製直方圖
- R points 向繪圖添加點
- R stem 莖葉圖
- R mtext 將文本寫入繪圖的邊距
- R arrows 將箭頭添加到繪圖中
- R contour 顯示輪廓
- R pairs 散點圖矩陣
- R stars 星圖(蜘蛛圖/雷達圖)和線段圖
- R coplot 調節圖
- R smoothScatter 具有平滑密度顏色表示的散點圖
- R mosaicplot 馬賽克圖
- R plot.raster 繪製光柵圖像
- R axTicks 計算軸刻度線位置
- R curve 繪製函數圖
- R plot.factor 繪製因子變量
- R sunflowerplot 製作向日葵散點圖
- R plot.table 表對象的繪圖方法
- R units 圖形單位
- R identify 識別散點圖中的點
- R layout 指定複雜的繪圖安排
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Draw a Boxplot for each Column (Row) of a Matrix。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。