gpt4 book ai didi

R:添加多条回归线和黄土曲线来绘制

转载 作者:行者123 更新时间:2023-12-02 09:23:53 27 4
gpt4 key购买 nike

mod = lm(iris$Petal.Length ~ iris$Petal.Width + iris$Species)
plot(iris$Petal.Length ~ iris$Petal.Width, col = iris$Species)
abline(mod)

enter image description here

在这里,我对物种进行分层,并且想绘制 3 条回归线,每个物种一条。 abline(mod) 似乎只添加一行。另外,如果我想添加黄土曲线怎么办?

最佳答案

ggplot 一行:

library(ggplot2)

ggplot(iris, aes(Petal.Width, Petal.Length, color=Species)) + geom_point() + geom_smooth(method='lm', formula=y~x)

省略geom_smooth()的参数,您将得到LOESS线。然而,这里的数据太少,所以失败了。

关于R:添加多条回归线和黄土曲线来绘制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39500640/

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