當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R boxplot.matrix 為矩陣的每列(行)繪製箱線圖


R語言 boxplot.matrix 位於 graphics 包(package)。

說明

將矩陣的列(或行)解釋為不同的組,為每個組繪製箱線圖。

用法

## S3 method for class 'matrix'
boxplot(x, use.cols = TRUE, ...)

參數

x

一個數字矩陣。

use.cols

邏輯指示是否應繪製列(默認情況下)或行(use.cols = FALSE)。

...

boxplot 的進一步參數。

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.formulaplot.factor 與分組因子(更一般的概念)一起使用。

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Draw a Boxplot for each Column (Row) of a Matrix。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。