【发布时间】:2014-06-09 09:22:40
【问题描述】:
我们可以更改 gnuplot 在错误栏中使用的线条类型吗? 这是我的 gnuplot 代码:
set terminal postscript eps color
set output '| epstopdf --filter --outfile=plot.pdf'
set xlabel "Simulation days"
set xtics nomirror
set ylabel "Time (seconds)"
set ytics nomirror
set logscale y
set key left top
plot "data1.csv" using 1:($2/1000):($3/1000) with yerrorbars pt 5,\
"data2.csv" using 1:($2/1000):($3/1000) with yerrorbars pt 7
第一个图中的误差线与第二个不同。 第一条线是实线,但第二条线是虚线。 是否可以定义错误栏的样式?
【问题讨论】:
-
哦,哇,不知道
output '| ...'。 +1 教我:)