当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。