如何在gnuplot中绘制不同颜色的点

时间:2015-05-16 14:39:12

标签: plot gnuplot

这是我第一次使用gnuplot。因此,我的问题可能是如此明显,但我无法弄清楚。 (我已经在stackoverflow和互联网上搜索了)

现在我需要在绘图上绘制点数,我的文件是这样的:

点 - Xcoord点 - Ycoord Color_of_dot

> example:  
 1.1 0.234 "black"
 2.15 3.1 "black"
 1.76 0.94 "black"
 3.15 6.12 "blue"
 3.66 2.14 "blue"

因此,为了在图表上绘制这些点,我输入了以下命令(其中没有工作):

plot 'test.dat' using 1:2:3 with points pointtype 7 pointsize 1 lc variable

plot 'test.dat' using 1:2:3 with points pointtype 7 pointsize 1 lc 3

但是当我输入这样的命令时:plot 'test.dat' using 1:2 with points pointtype 7 pointsize 1 lc "black"它有效。所以我的问题是如何从文件中指定点的颜色?

0 个答案:

没有答案