我有一个简单的数据集,我正在尝试使用功率趋势来最好地拟合数据。样本数据很小,如下:
structure(list(Discharge = c(250, 300, 500, 700, 900), Downstream = c(0.3,
0.3, 0.3, 0.3, 0.3), Age = c(1.32026239202165, 1.08595138888889,
0.638899189814815, 0.455364583333333, 0.355935185185185)), .Names = c("Discharge",
"Downstream", "Age"), row.names = c(NA, 5L), class = "data.frame")
数据如下:
> new
Discharge Downstream Age
1 250 0.3 1.3202624
2 300 0.3 1.0859514
3 500 0.3 0.6388992
4 700 0.3 0.4553646
5 900 0.3 0.3559352
我尝试使用绘制上述数据ggplot2
ggplot(new)+geom_point(aes(x=Discharge,y=Age))
我可以使用添加线性线,geom_smooth(method="lm")
但我不确定我需要什么代码来显示电源线。
输出如下:
如何像在 excel 中那样添加幂线性回归线?excel图如下图: