gnuplot警告:使用非常简单的file.dat跳过没有有效点的数据文件

时间:2016-04-02 13:22:56

标签: linux plot gnuplot

我想了解" index"的使用命令只绘制一些数据组,或者例如绘制每个组但具有不同的标题等。

我从一个简单的例子开始:在文件prova.dat中我有以下文字(我已经检查过没有白色记录了一行的结尾):

1 1
2 2
3 3
4 4

1 2
2 3
3 4
4 5

然后我使用此代码来绘制来自' prova.dat':

的数据
 set term postscript  eps enhanced font 'Times-Roman,24'
 set output 'prova.eps'
 set key right top
 set xrange [1:5]
 set yrange [1:5]
 plot 'prova.dat' index 0 w lines title columnheader(1), \
      'prova.dat' index 1 w lines title columnheader(1) 

但我收到以下警告:

warning: Skipping data file with no valid points

因此在生成的.eps中我没有绘图而只有轴(格式正确)。

我还阅读了其他帖子,但我无法找到解决方案。

提前谢谢你!

0 个答案:

没有答案