作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用函数 lda()
进行了线性判别分析从包 MASS。现在我会尝试像 ade4 包(forLDA)中那样绘制双标图。你知道我该怎么做吗?
如果我尝试使用 biplot()
功能不起作用。例如,如果我使用 Iris 数据并制作 LDA:
dis2 <- lda(as.matrix(iris[, 1:4]), iris$Species)
plot()
绘制它,但如果我使用函数
biplot()
它不起作用:
biplot(dis2)
Error in nrow(y) : argument "y" is missing, with no default
最佳答案
我编写了以下函数来执行此操作:
lda.arrows <- function(x, myscale = 1, tex = 0.75, choices = c(1,2), ...){
## adds `biplot` arrows to an lda using the discriminant function values
heads <- coef(x)
arrows(x0 = 0, y0 = 0,
x1 = myscale * heads[,choices[1]],
y1 = myscale * heads[,choices[2]], ...)
text(myscale * heads[,choices], labels = row.names(heads),
cex = tex)
}
dis2 <- lda(as.matrix(iris[, 1:4]), iris$Species)
plot(dis2, asp = 1)
lda.arrows(dis2, col = 2, myscale = 2)
myscale
的值因此。默认情况下,这会为第一和第二轴绘制箭头。如果要绘制其他轴,请更改
choices
来反射(reflect)这一点。
关于r - 如何在 r 中为 LDA 绘制双标图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17232251/
我是一名优秀的程序员,十分优秀!