gpt4 book ai didi

r - 如何在黄土和样条回归中添加协变量,然后使用 ggplot2 在 r 中绘制它

转载 作者:行者123 更新时间:2023-12-04 04:06:49 27 4
gpt4 key购买 nike

我知道如何仅用一个自变量绘制黄土和样条回归。

library(tidyverse)

# loess
ggplot(mtcars, aes(x = mpg, y = drat)) +
geom_point() +
geom_smooth(method = 'loess', formula = y ~ x)

# splines
ggplot(mtcars, aes(x = mpg, y = drat)) +
geom_point() +
geom_smooth(method = 'lm', formula = y ~ splines::bs(x, 8))

让我卡住的是,我有多个自变量,例如 x1x2x3,我创建了一个这样的模型:y ~ x1 + x2 + x3,我只想用 loess 或 spline 绘制 yx1 之间的曲线。

我尝试过但失败了。

cylgear 是模型中的协变量,我只对 dratmpg 感兴趣


# loess
ggplot(mtcars, aes(x = mpg, y = drat)) +
geom_point() +
geom_smooth(method = 'loess', formula = y ~ x + cyl + gear)
# splines
ggplot(mtcars, aes(x = mpg, y = drat)) +
geom_point() +
geom_smooth(method = 'lm', formula = y ~ splines::bs(x, 8)+ cyl + gear)

我们将不胜感激任何帮助。

最佳答案

一种方法是分别拟合 loess 并绘制具有置信区间的拟合线。

fit = predict(loess(drat ~ mpg + cyl + gear, data=mtcars, span=0.5), se=T)
#tem = predict(loess(drat~ mpg,data=mtcars), se=T)

dat = mtcars
dat$loess = fit$fit
dat$ymax = fit$fit + fit$se.fit * abs(qnorm((1-0.95)/2))
dat$ymin = fit$fit - fit$se.fit * abs(qnorm((1-0.95)/2))

ggplot(dat, aes(x = mpg, y = drat)) +
geom_point() +
geom_line(aes(y=loess), color='blue', size=1) +
geom_ribbon(aes(ymin=ymin, ymax=ymax), alpha=0.2)

关于r - 如何在黄土和样条回归中添加协变量,然后使用 ggplot2 在 r 中绘制它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62344668/

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