(i) 多重線形回帰 (> 3 つの独立変数) を視覚化し、(ii) 線形回帰直線の標準偏差回廊をプロットしようとしていますが、これを行う方法がわかりません。具体的には、ライン +- SD をプロットしたいと思います。虹彩の例:
lm1 <- lm(iris$Sepal.Length ~ iris$Sepal.Width + iris$Petal.Width + iris$Species+ iris$Petal.Width)
summary(lm1)
library(car)
avPlots(lm1, intercept = TRUE)
library(ggplot2)
ggplot(iris, aes(x = iris$Sepal.Width, y = Sepal.Length,
col = factor(Species)))+ geom_point(size=1)+ theme_bw()+geom_smooth(method=lm,se=FALSE, fullrange=TRUE)
これにより、追加された変数プロットと の回帰直線が得られSepal.Length~Sepal.Width + Species
ます。(i)結果を要約するために追加された変数プロットよりも効果的な方法があるかどうか疑問に思っていました( https://stats.stackexchange.com/questions/89747/how-to-describe-orのようなスレッドを既に見ました-visualize-a-multiple-linear-regression-modelとhttps://stats.stackexchange.com/questions/71413/best-way-to-visually-present-relationships-from-a-multiple-linear-model私は最近開発さggPredict
れた、最大 3 つの変数に適した関数があるかどうか、および(ii)これら 2 つのプロットに標準偏差を追加する方法があるかどうか疑問に思っています。
Sepal.Length~Sepal.Width
赤で示した回帰直線の意図した出力の例: