我正在使用错误栏与gnuplot合作制作图表。 我为每个值都有多个文本文件。
例如,文件 100.txt 包含x = 100的值,如下所示
0.000509004
0.000467744
0.000480521
0.000468907
0.000481908
...
我尝试了很多东西,包括更直接的东西,比如
plot "100.txt" using $1 with yerrorbars, \
"200.txt" using $1 with yerrorbars, \
...
但它不起作用。
我觉得我错过了一些简单的东西,但我可以把手指放在上面。