2

我想使用 Gnuplot 绘制一种数据透视图。所以我需要忽略文件中的一些数据行。我尝试了以下方法:

unset key

set xtics font "Times-Roman, 5" 
set ytics font "Times-Roman, 5" 

set multiplot layout 4,3 #title "Multiplots\n"

plot [7:50][0:1] 'forStackoverGnuplot.txt' using 1:($2==0?($3==4?$4:NaN):NaN) with lines ti '4'
plot [7:50][0:1] 'forStackoverGnuplot.txt' using 1:($2==0?($3==4?$4:"fe"):"fe") with lines ti '4'

数据文件:

20  0   5   0.668593155
7   0   4   0.885223087
20  0   5   0.668593155
10  0   4   0.92239289
20  0   5   0.668593155
20  0   4   0.834947746
30  0   4   0.693726036
50  0   4   0.47169919

但我得到: 糟糕的图表

这不是我预期的结果。我能做些什么?我想让数据线交错。

4

1 回答 1

5

基本上,gnuplot区分丢失和无效数据点,参见例如在 gnuplot 中,“set datafile missing”,如何忽略“nan”和“-nan”?.

如果您有一个未定义的点(例如 asNaN1/0),则绘图线会中断。为此,您需要设置datafile missing. 但是,如果您在语句中评估某些内容,那将不起作用using,因为对于“未定义”<->“缺失”选项(选择列,例如,可以)来说太晚了using 1:4。所以声明

set datafile missing '?'
plot 'forStackoverGnuplot.txt' using 1:(($2==0 && $3==4) ? $4 : '?')

不起作用。_

相反,您必须在绘制数据之前从外部过滤数据并删除受影响的行:

unset key
set style data linespoints

set multiplot layout 1,2 

plot [7:50][0:1] 'forStackoverGnuplot.txt' using 1:(($2==0 && $3==4) ? $4 : 1/0)

filter = '< awk ''{ if ($2 == 0 && $3 == 4) print $1, $2, $3, $4}'' '
plot [7:50][0:1] filter.' forStackoverGnuplot.txt' using 1:4

unset multiplot

这给出了:

在此处输入图像描述

在左图中,绘制了点,但没有用线连接,因为它们之间存在“无效”点。

于 2013-09-25T09:42:07.127 回答