gpt4 book ai didi

r - geom_smooth 自定义线性模型

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

在查看this时问题,我无法为 geom_smooth 指定自定义线性模型。我的代码如下:

example.label <- c("A","A","A","A","A","B","B","B","B","B")
example.value <- c(5, 4, 4, 5, 3, 8, 9, 11, 10, 9)
example.age <- c(30, 40, 50, 60, 70, 30, 40, 50, 60, 70)
example.score <- c(90,95,89,91,85,83,88,94,83,90)
example.data <- data.frame(example.label, example.value,example.age,example.score)

p = ggplot(example.data, aes(x=example.age,
y=example.value,color=example.label)) +
geom_point()
#geom_smooth(method = lm)

cf = function(dt){
lm(example.value ~example.age+example.score, data = dt)
}

cf(example.data)

p_smooth <- by(example.data, example.data$example.label,
function(x) geom_smooth(data=x, method = lm, formula = cf(x)))

p + p_smooth

我收到此错误/警告:

Warning messages:
1: Computation failed in `stat_smooth()`:
object 'weight' not found
2: Computation failed in `stat_smooth()`:
object 'weight' not found

为什么我会得到这个?为 geom_smooth 指定自定义模型的正确方法是什么。谢谢。

最佳答案

具有两个连续预测变量和一个连续结果的回归模型的回归函数位于 3D 空间中(两个用于预测变量,一个用于结果),而 ggplot 图是一个 2D 空间(一个连续预测变量位于x 轴和 y 轴上的结果)。这就是为什么您无法使用geom_smooth绘制两个连续预测变量的函数的根本原因。

一个“解决方法”是选择一个连续预测变量的几个特定值,然后为第一个变量的每个选定值在 x 轴上为另一个连续预测变量绘制一条线。

这是一个带有 mtcars 数据框的示例。下面的回归模型使用 wthp 预测 mpg。然后,我们针对各种 hp 值绘制 mpgwt 的预测。我们创建一个预测数据框,然后使用 geom_line 进行绘图。图中的每条线代表不同 hp 值下 mpgwt 的回归预测。当然,您也可以颠倒 wthp 的角色。

library(ggplot)
theme_set(theme_classic())

d = mtcars
m2 = lm(mpg ~ wt + hp, data=d)

pred.data = expand.grid(wt = seq(min(d$wt), max(d$wt), length=20),
hp = quantile(d$hp))
pred.data$mpg = predict(m2, newdata=pred.data)

ggplot(pred.data, aes(wt, mpg, colour=factor(hp))) +
geom_line() +
labs(colour="HP Quantiles")

enter image description here

另一种选择是使用颜色渐变来表示 mpg(结果)并在 x 和 y 轴上绘制 wthp :

pred.data = expand.grid(wt = seq(min(d$wt), max(d$wt), length=100),
hp = seq(min(d$hp), max(d$hp), length=100))
pred.data$mpg = predict(m2, newdata=pred.data)

ggplot(pred.data, aes(wt, hp, z=mpg, fill=mpg)) +
geom_tile() +
scale_fill_gradient2(low="red", mid="yellow", high="blue", midpoint=median(pred.data$mpg))

enter image description here

关于r - geom_smooth 自定义线性模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44772738/

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