如何在 gnuplot 中将标签放置在每个框的顶部?

发布于 2024-09-14 14:15:22 字数 154 浏览 2 评论 0原文

我有一个数据数组,如下所示:[0.5, 0.3, 0.15,0.0, 0.0, -0.09, -0.25,-0.4]

我想在每个盒子的顶部放置一个相应的盒子标签(或编号)以指示哪个是哪个。

有人知道该怎么做吗?

谢谢。

I have an array of data which looks like this [0.5, 0.3, 0.15,0.0, 0.0, -0.09, -0.25,-0.4].

I wanted put a corresponding label (or number) of the boxes on top of the each box to indicate which one is which.

Anybody knows how to do this ??

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

风蛊 2024-09-21 14:15:23
plot 'data.txt' using 1:3 with boxes lt 1 title columnheader(3), \
     'data.txt' using 1:3:(sprintf("%.0f",$3)) with labels font "Helvetica,8" center offset 0,0.5 notitle
plot 'data.txt' using 1:3 with boxes lt 1 title columnheader(3), \
     'data.txt' using 1:3:(sprintf("%.0f",$3)) with labels font "Helvetica,8" center offset 0,0.5 notitle
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文