gnuplot:绘制 X、Y 坐标及其标签
我有以下文件(test.dat):
A 149 127
B 19 157
C 49 127
D 149 147
E 9 127
F 49 12
G 129 127
我希望 gnuplot 绘制这些点及其标签(一个点位于位置 (149, 127),另一个点位于 (19, 157),等等)。我该怎么做?
谢谢!
I have the following file (test.dat):
A 149 127
B 19 157
C 49 127
D 149 147
E 9 127
F 49 12
G 129 127
I would like gnuplot to plot these points with their label (a dot a position (149, 127), another dot at (19, 157), etc.). How can I do this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
类似的事情应该有助于
gnuplot>使用带标签的 ($2+3):($3+3):1 绘制“data.txt”,使用 2:3 绘制“data.txt”
Something along the lines of this should help
gnuplot> plot "data.txt" using ($2+3):($3+3):1 with labels, "data.txt" using 2:3