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


R parcoord 平行坐標圖


R語言 parcoord 位於 MASS 包(package)。

說明

平行坐標圖

用法

parcoord(x, col = 1, lty = 1, var.label = FALSE, ...)

參數

x

列代表變量的矩陣或 DataFrame 。允許缺失值。

col

顏色向量,根據每次觀察的需要進行回收。

lty

線型向量,根據每次觀察的需要進行回收。

var.label

如果是 TRUE ,則每個變量的軸都標有最大值和最小值。

...

更多圖形參數傳遞給 matplot

副作用

繪製平行坐標圖。

例子

parcoord(state.x77[, c(7, 4, 6, 2, 5, 3)])

ir <- rbind(iris3[,,1], iris3[,,2], iris3[,,3])
parcoord(log(ir)[, c(3, 4, 2, 1)], col = 1 + (0:149)%/%50)

作者

B. D. Ripley. Enhancements based on ideas and code by Fabian Scheipl.

參考

Wegman, E. J. (1990) Hyperdimensional data analysis using parallel coordinates. Journal of the American Statistical Association 85, 664-675.

Venables, W. N. and Ripley, B. D. (2002) Modern Applied Statistics with S. Fourth edition. Springer.

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Parallel Coordinates Plot。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。