gpt4 book ai didi

r - R 中的二次判别分析 (QDA) 图

转载 作者:行者123 更新时间:2023-12-03 23:26:36 25 4
gpt4 key购买 nike

我正在尝试使用 MASS 和 ggplot2 包绘制 Iris 数据集二次判别分析 (QDA) 的结果。该脚本在其第一部分中显示了线性判别分析 (LDA),但我不知道要继续为 QDA 执行此操作。 “qda”类的对象与“lda”类对象有点不同,例如:我找不到解释的组间方差/判别分量的迹线比例/X%,无法将它们添加到图中轴。任何帮助或想法如何使用 ggplot2 编码此图?
代码:

require(MASS)
require(ggplot2)
require(scales)


irislda <- lda(Species ~ ., iris)
prop.lda = irislda$svd^2/sum(irislda$svd^2)
plda <- predict(irislda, iris)

datasetLDA = data.frame(species = iris[,"Species"], irislda = plda$x)
ggplot(datasetLDA) + geom_point(aes(irislda.LD1, irislda.LD2, colour = species, shape = species), size = 2.5) +
labs(x = paste("LD1 (", percent(prop.lda[1]), ")", sep=""),
y = paste("LD2 (", percent(prop.lda[2]), ")", sep=""))


irisqda <- qda(Species ~ ., iris)
pqda <- predict(irisqda, iris)
datasetQDA = data.frame(species = iris[,"Species"], irisqda = pqda$posterior)
ggplot(datasetQDA) + geom_point(???, ???, colour = species, shape = species), size = 2.5)

最佳答案

按照 Ducks 的评论,如果您只有 2 个维度,我们可以使用链接中提供的 decisionplot 函数来可视化这些。对于更多的变量,它必须稍微改变。

library(MASS)
model <- qda(Species ~ Sepal.Length + Sepal.Width, iris)
decisionplot(model, iris, class = "Species")
base plot decisionplot 函数如下所示。
decisionplot <- function(model, data, class = NULL, predict_type = "class",
resolution = 100, showgrid = TRUE, ...) {

if(!is.null(class)) cl <- data[,class] else cl <- 1
data <- data[,1:2]
k <- length(unique(cl))

plot(data, col = as.integer(cl)+1L, pch = as.integer(cl)+1L, ...)

# make grid
r <- sapply(data, range, na.rm = TRUE)
xs <- seq(r[1,1], r[2,1], length.out = resolution)
ys <- seq(r[1,2], r[2,2], length.out = resolution)
g <- cbind(rep(xs, each=resolution), rep(ys, time = resolution))
colnames(g) <- colnames(r)
g <- as.data.frame(g)

### guess how to get class labels from predict
### (unfortunately not very consistent between models)
p <- predict(model, g, type = predict_type)
if(is.list(p)) p <- p$class
p <- as.factor(p)

if(showgrid) points(g, col = as.integer(p)+1L, pch = ".")

z <- matrix(as.integer(p), nrow = resolution, byrow = TRUE)
contour(xs, ys, z, add = TRUE, drawlabels = FALSE,
lwd = 2, levels = (1:(k-1))+.5)

invisible(z)
}
如果我们想用 ggplot2 重新创建它,我们只需更改函数以使用 ggplot2 函数而不是基本图。这需要将数据更改为 data.frame 并在此过程中构建绘图。
decisionplot_ggplot <- function(model, data, class = NULL, predict_type = "class",
resolution = 100, showgrid = TRUE, ...) {

if(!is.null(class)) cl <- data[,class] else cl <- 1
data <- data[,1:2]
cn <- colnames(data)

k <- length(unique(cl))

data$pch <- data$col <- as.integer(cl) + 1L
gg <- ggplot(aes_string(cn[1], cn[2]), data = data) +
geom_point(aes_string(col = 'as.factor(col)', shape = 'as.factor(col)'), size = 3)

# make grid
r <- sapply(data[, 1:2], range, na.rm = TRUE)
xs <- seq(r[1, 1], r[2, 1], length.out = resolution)
ys <- seq(r[1, 2], r[2, 2], length.out = resolution)

g <- cbind(rep(xs, each = resolution),
rep(ys, time = resolution))
colnames(g) <- colnames(r)

g <- as.data.frame(g)

### guess how to get class labels from predict
### (unfortunately not very consistent between models)
p <- predict(model, g, type = predict_type)
if(is.list(p)) p <- p$class
g$col <- g$pch <- as.integer(as.factor(p)) + 1L

if(showgrid)
gg <- gg + geom_point(aes_string(x = cn[1], y = cn[2], col = 'as.factor(col)'), data = g, shape = 20, size = 1)

gg + geom_contour(aes_string(x = cn[1], y = cn[2], z = 'col'), data = g, inherit.aes = FALSE)
}
用法:
decisionplot_ggplot(model, iris, class = "Species")
请注意,它现在返回 ggplot 本身,因此可以使用标准函数来更改标题、主题等。此外,这只是一种直接翻译。将 geom_polygon 与有效的 alpha 一起使用可能会更美观。可以使用 geom_* 的替代选择来制作类似的更好的轮廓。
ggplot

关于r - R 中的二次判别分析 (QDA) 图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63782598/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com