Gnuplot命令带有多个" with"参数

时间:2015-05-18 13:40:59

标签: command-line plot gnuplot

在Gnuplot中绘图:

例如,如果一个人试图将数据点类型和错误栏设置为一个命令,那么"与"会发生冲突。论据,即:

plot "test.csv" using 1:2:3 with points pointtype 5 with yerrorbars

错误消息如下:绘图选项中的重复或相矛盾的参数。

有任何建议如何解决这个问题?

  • 它应该分成两个单独的命令吗?

  • 或者真的有办法给多个""单行中的论据?

1 个答案:

答案 0 :(得分:3)

不,你不能在一行中使用两个with参数。

但在您的情况下,这不是必要的,因为yerrorbars样式也会绘制点:

set xrange [0:1]
set samples 11
plot '+' using 1:1:($1*0.1) with yerrorbars pt 5

enter image description here

通常,可以通过在单个plot命令中附加更多部分来组合不同的绘图样式,例如

plot "file.dat" using 1:2 with lines, "" using 1:2:3 with yerrorbars