使用 Gnuplot 进行时间序列的线性回归
我是 Gnuplot 的忠实粉丝,我在学习过程中一直将它用于各种项目。
最近,我想使用 Gnuplot 来绘制一些时间序列图,例如减肥、锻炼结果、气体消耗等。
因此,我像现在一样缩放 x 轴,
set xdata time
set timefmt "%d.%m %Y"
set format x "%d.%m"
现在我想使用拟合函数来进行线性拟合。 我的问题是,如果 x 轴与时间相关,我就无法让它工作。
I am a big fan of Gnuplot and I used it all along my studies for various projects.
Lately I wanted to use Gnuplot to chart some time series like weight loss, exercising results, gas consumptions etc.
Therefore I scale the x-axis like
set xdata time
set timefmt "%d.%m %Y"
set format x "%d.%m"
Now I want to use the fit-function to give me a linear fit. My problem is, that I cannot get that to work if the x-axis is time-related.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
然后将日期更改为数字,例如从第一个日期开始的天数,进行拟合,然后将数字再次转换回日期。
这样您将拥有“常规”x 和 y 数据集。
Then change the date to a number, for example a number of days starting from the first date, make the fit, and then convert the numbers back again into dates.
That way you'll have "regular" x and y data set.