标签: r ggplot2
我使用ggplot制作了一个情节,其中包含以下代码:
ggplot(tb_us, aes(year_new, count)) + geom_point() + stat_smooth(method = 'lm')
情节如下:
这一切都很好。但我也有兴趣找出这条线性拟合线的斜率。我怎样才能做到这一点?感谢