gpt4 book ai didi

gnuplot - 标记单个数据点 gnuplot

转载 作者:行者123 更新时间:2023-12-04 04:50:20 29 4
gpt4 key购买 nike

只是想习惯 gnuplot。我在这个网站上搜索了几页寻找答案,阅读了文档(4.6),但仍然没有找到答案。说我有一个这样的数据文件:

0.0 0
1.0 25
2.0 55
3.0 110
4.0 456
5.0 554
6.0 345

我想标记图上的所有数据点。我该怎么做?我尝试了这个建议 plot 'exp.dat' u 1:2 w labels point offset character 0,character 1 tc rgb "blue" 但它没有用。它给了我一个 Not enough columns for this style 响应。我确定这是我正在做的事情,但我不确定是什么。任何帮助将不胜感激。谢谢。

最佳答案

我认为您缺少标签字符串。你可以做

flabel(y)=sprintf("y=%.2f", y)
plot '-' u 1:2:(flabel($2)) w labels point offset character 0,character 1 tc rgb "blue"
0.0 0
1.0 25
2.0 55
3.0 110
4.0 456
5.0 554
6.0 345

enter image description here

关于gnuplot - 标记单个数据点 gnuplot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17520684/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com