gnuplot 使用``using`` 来生成标签
gnuplot using ``using`` to produce labels
我有表格中的数据
x y ymin ymax percentage
我正在策划这个
plot "file.dat" using 1:2:3:4 with yerrorbars [...]
现在如何将百分比舍入为整数并将它们作为标签放在误差线上方?
这应该可以解决问题:
plot "file.dat" using 1:2:3:4 with yerrorbars, '' u 1:2:(sprintf("%d",)) w labels
键入 help labels
了解更多信息
我有表格中的数据
x y ymin ymax percentage
我正在策划这个
plot "file.dat" using 1:2:3:4 with yerrorbars [...]
现在如何将百分比舍入为整数并将它们作为标签放在误差线上方?
这应该可以解决问题:
plot "file.dat" using 1:2:3:4 with yerrorbars, '' u 1:2:(sprintf("%d",)) w labels
键入 help labels
了解更多信息