system("gnuplot -e \"set term png; set output 'output.png'; set key off; set xtics nomirror; set ytics nomirror; unset border; plot 'data.txt' with lines\" -persist"); 为什么还有刻度
时间: 2024-03-19 19:45:24 浏览: 48
gnuplot-4.6.0.tar.gz
如果在生成的PNG图像中仍然存在刻度线,可能是因为数据文件中包含了刻度值。Gnuplot会根据数据文件中的值自动设置刻度。您可以尝试在数据文件中删除刻度值,并重新运行代码来查看结果。
另外,如果您希望完全控制刻度线的位置和标签,可以使用以下命令:
```
set xtics ("label1" position1, "label2" position2, ...)
set ytics ("label1" position1, "label2" position2, ...)
```
其中,`label`是要显示的刻度标签,`position`是该刻度的位置。例如,要在x轴上显示0和2,可以使用以下命令:
```
set xtics ("0" 0, "2" 2)
```
这将在x轴上显示0和2,而不会自动设置其他刻度。
阅读全文