美文网首页
ggplot2: 添加回归线

ggplot2: 添加回归线

作者: LET149 | 来源:发表于2023-06-19 10:39 被阅读0次

向散点图中添加回归线

ggplot(data=, aes(x=, y=))+geom_smooth(method=, formula=, level=, se=, color=, fill=, alpha=)+geom_point(color=, size, alpha=)

    1. method: 进行回归的方式
    1. formula=: 进行回归的公式,例如:y ~ x+1, y ~ log(x)
    1. level=: 绘制的置信区间,默认为0.95
    1. se=: 逻辑值,是否绘制置信区间,默认为TRUE
    1. alpha=: 绘制点的透明度,0为完全透明,1为完全不透明
    1. color= : geom_smooth()中代表回归线的颜色
    1. fill= : geom_smooth()中代表置信区间的颜色
    1. alpha= : geom_smooth()中代表置信区间的透明度
N = 300
x <- 1:N+rnorm(N, 10, 60)
y <- 1:N+rnorm(N, 10, 60)
type=sample(c('type_1','type_2'), N, replace=TRUE)
kk = data.frame(x=x, y=y, type=type) 

ggplot(data = df, aes(x=x, y=y))+geom_smooth(method='lm', level=0.99)+geom_point(color=colour, size=2, alpha=0.5)+theme_cowplot()  '#示例一
ggplot(data = df, aes(x=x, y=y))+geom_smooth(method='gam',level=0.99)+geom_point(color=colour, size=2, alpha=0.5)+theme_cowplot()  #示例二
示例一
示例二

相关文章

网友评论

      本文标题:ggplot2: 添加回归线

      本文链接:https://www.haomeiwen.com/subject/pkcnhltx.html