biplot.princomp
位于 stats
包(package)。 说明
从 princomp
或 prcomp
的输出生成双图(严格意义上)
用法
## S3 method for class 'prcomp'
biplot(x, choices = 1:2, scale = 1, pc.biplot = FALSE, ...)
## S3 method for class 'princomp'
biplot(x, choices = 1:2, scale = 1, pc.biplot = FALSE, ...)
参数
x |
类 |
choices |
长度为 2 的向量,指定要绘制的组件。只有默认值才是严格意义上的双图。 |
scale |
变量按 |
pc.biplot |
如果为真,请使用 Gabriel (1971) 所说的“主成分双标图”,其中 |
... |
要传递给 |
细节
这是通用函数 biplot
的方法。精确的定义存在相当大的混乱:这里遵循原始论文 Gabriel (1971) 的定义。 Gabriel 和 Odoroff (1990) 使用相同的定义,但他们的图实际上对应于 pc.biplot = TRUE
。
副作用
在当前图形设备上生成绘图。
例子
require(graphics)
biplot(princomp(USArrests))
参考
Gabriel, K. R. (1971). The biplot graphical display of matrices with applications to principal component analysis. Biometrika, 58, 453-467. doi:10.2307/2334381.
Gabriel, K. R. and Odoroff, C. L. (1990). Biplots in biomedical research. Statistics in Medicine, 9, 469-485. doi:10.1002/sim.4780090502.
也可以看看
相关用法
- R biplot 多元数据的双标图
- R binom.test 精确二项式检验
- R birthday 巧合的概率
- R bartlett.test 方差齐性的 Bartlett 检验
- R bandwidth 用于核密度估计的带宽选择器
- R stlmethods STL 对象的方法
- R medpolish 矩阵的中值波兰(稳健双向分解)
- R naprint 调整缺失值
- R summary.nls 总结非线性最小二乘模型拟合
- R summary.manova 多元方差分析的汇总方法
- R formula 模型公式
- R nls.control 控制 nls 中的迭代
- R aggregate 计算数据子集的汇总统计
- R deriv 简单表达式的符号和算法导数
- R kruskal.test Kruskal-Wallis 秩和检验
- R quade.test 四方测试
- R decompose 移动平均线的经典季节性分解
- R plot.stepfun 绘制阶跃函数
- R alias 查找模型中的别名(依赖项)
- R qqnorm 分位数-分位数图
- R eff.aovlist 多层方差分析的计算效率
- R pairwise.t.test 成对 t 检验
- R loglin 拟合对数线性模型
- R predict.smooth.spline 通过平滑样条拟合进行预测
- R influence.measures 回归删除诊断
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Biplot for Principal Components。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。