Gnuplot:如何绘制日期/时间图表

发布于 2024-10-19 07:39:25 字数 260 浏览 0 评论 0原文

我想绘制这种数据:

  • 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

独自←快乐 2024-10-26 07:39:25

正如 Tom 所说,你只能使用一个 timefmt 。但是,如果可以将数据拆分为更多列,如下所示:

22/02 51 10
25/02 63 10
01/03 50 55
23/03 52 10

然后您可以通过直接计算来绘制时间长度,如下所示:

plot 'file' u 1:($2 + $3/60)

绘制分钟,或像这样:

plot 'file' u 1:($2/60 + $3/3600)

绘制小时。

As Tom said, you can only use one timefmt. However, if it is possible to split your data to more columns like this:

22/02 51 10
25/02 63 10
01/03 50 55
23/03 52 10

you can then plot the time length by direct calculation, like this:

plot 'file' u 1:($2 + $3/60)

to plot minutes, or like this:

plot 'file' u 1:($2/60 + $3/3600)

to plot hours.

自由范儿 2024-10-26 07:39:25

来自 ?xdata

目前只有一个timefmt,
这意味着所有时间/日期
列必须符合此格式。

因此,您需要稍微更改数据以符合一种设置。

00:00:22/02 51:10:22/02
00:00:25/02 63:10:22/02
00:00:01/03 50:55:22/02
00:00:23/03 52:10:22/02

注意,您可以使用命令行工具在 gnuplot 中执行此操作,请参阅此处< /a>

文件编辑完成后,您可以像这样读取它

set xdata time
set ydata time
set timefmt "%M:%S:%d/%m"
set format x "%d/%m"
set format y "%M:%S"
plot "date_time.dat" u 1:2 w l

From ?xdata

There is currently only one timefmt,
which implies that all the time/date
columns must conform to this format.

So you need to alter your data somewhat to conform to one setting.

something like

00:00:22/02 51:10:22/02
00:00:25/02 63:10:22/02
00:00:01/03 50:55:22/02
00:00:23/03 52:10:22/02

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

set xdata time
set ydata time
set timefmt "%M:%S:%d/%m"
set format x "%d/%m"
set format y "%M:%S"
plot "date_time.dat" u 1:2 w l
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文