我从dataFrame绘制的数据看起来像这样Image 现在我需要添加一个适合现有情节的回归线。
添加回归线的最简单方法是什么?
使用的代码是:
@Component
public class VehicleService {
@Autowired
@Qualifier("bike")
private Vehicle vehicle;
public void service() {
vehicle.start();
vehicle.stop();
}
}
使用python版本2.7。
答案 0 :(得分:1)
尝试
from scipy.stats import linregress
X = np.arange(length(df2))
y = df2
slope, intercept, r_value, p_value, std_err = linregress(X,y)
x = np.linspace(x.min(), x.max(),1001)
plt.plot(x, slope*x+intercept)