大家好
我正在绘制最多 15 行的累积图。为了使其更具可读性和可读性的黑白印刷,我想使用不同的线型,但有一个问题。首先,我的脚本:
set terminal pdf
set output "Cumulative.pdf"
set autoscale yfix
set autoscale xfix
set key bottom right
set xlabel 'Something'
set ylabel 'Something else'
set style increment user
set style line 1 lc rgb '#372101' lw 3 lt 0 pt 0 ps 1
set style line 2 lc rgb '#FF8A9A' lw 3 lt 1 pt 1 ps 1
set style line 3 lc rgb '#7A4900' lw 3 lt 2 pt 2 ps 1
stats 'file1'
num1=STATS_records
stats 'file2'
num2=STATS_records
plot 0/0 notitle,\
'file1' u 2 : ((100.0/num1)) title '1' smooth cumulative,\
'file2' u 2 : ((100.0/num2)) title '2' smooth cumulative
我的数据文件如下所示:
1 -54
2 -54
3 -71
4 -70
5 -71
6 -70
我希望 Gnuplot 使用我之前设置的样式,但它只针对颜色这样做。其他选项被忽略。当我添加“带线点”或“带点”时,我会得到不同的点类型。到目前为止,一切都很好。'with lines' 或 'withlinespoints' 不起作用的是线型。这只是标准的。当我在绘图命令中特别使用 'lt x' 时,它使用第 x 线型,而不是线型。我想知道,可以选择具有那种情节的线型吗?这真的很有帮助,因为点类型很容易在图表中丢失。如果可以的话,是否也可以使线型一致。我的意思是,如果这些点彼此非常接近,那么线型仍然是可读的。
任何帮助表示赞赏,甚至是使其在黑白中比线或点类型更具可读性的替代方法。谢谢!