Gnuplot:如何使用自定义xlabels绘制单点

问题描述 投票:0回答:1

我的问题如下,我有一个像这样的文本文件:

#X,#Y 
1,1.00182349
2,4.024570000000001
3,8.73499

我想得到的是这样的情节:

enter image description here

其中,基本上,每个y值被绘制为不同的点,而在x轴上,我的标签是N,L,H。

我用octave中的plot命令制作了那张照片,但我不得不用gnuplot这样做。

拜托,有人可以告诉我该怎么做吗?

谢谢。

plot gnuplot points
1个回答
2
投票

您可以为tic标签指定任意标签:

set datafile separator comma
set logscale    y
set xtics ("N" 1, "L" 2, "H" 3)
plot "test.dat" using 1:2:1 notitle with points linecolor variable pointtype 5 pointsize 2

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.