Gnuplot:如何绘制日期/时间图表
我想绘制这种数据:
- X 轴:日期
- Y 轴:时间长度
数据看起来像这样:
22/02 51:10
25/02 63:10
01/03 50:55
23/03 52:10
我已经为 X 轴完成了:
set xdata time
set timefmt "%d/%m"
但我不知道如何管理 Y 轴。
I would like to plot this kind of data:
- X axis: dates
- Y axis: time lenght
The data would looks like that:
22/02 51:10
25/02 63:10
01/03 50:55
23/03 52:10
I already done that for the X axis:
set xdata time
set timefmt "%d/%m"
But I don't know how to manage Y axis.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 Tom 所说,你只能使用一个 timefmt 。但是,如果可以将数据拆分为更多列,如下所示:
然后您可以通过直接计算来绘制时间长度,如下所示:
绘制分钟,或像这样:
绘制小时。
As Tom said, you can only use one timefmt. However, if it is possible to split your data to more columns like this:
you can then plot the time length by direct calculation, like this:
to plot minutes, or like this:
to plot hours.
来自
?xdata
因此,您需要稍微更改数据以符合一种设置。
请
注意,您可以使用命令行工具在 gnuplot 中执行此操作,请参阅此处< /a>
文件编辑完成后,您可以像这样读取它
From
?xdata
So you need to alter your data somewhat to conform to one setting.
something like
Note that you can use command line tools to do this within gnuplot, see here
Once the file is edited you can read it like so