我刚刚在我的 Mac 上通过 brew 安装了 gnuplot 和 pngcairo,当我绘制数据或函数时,轴不显示(尽管它显示图形)。
如果我将终端更改为 png 或 svg 或其他任何东西,它会完美运行,但是一旦我再次将终端设置为 pngcairo,它就会专注于图形。
有什么想法可以解决这个问题吗?(此图和数据来自 gnuplotting.org)
#!/usr/bin/gnuplot
#
# Creates a version of a plot, which looks nice for inclusion on web pages
#
# AUTHOR: Hagen Wierstorf
reset
# png
#set terminal pngcairo
#set output 'nice_web_plot.png'
set xtics rotate by 90 offset 0,0 right
# define axis
# remove border on top and right and set color to gray
set style line 11 lc rgb '#808080' lt 1
set border 3 back ls 11
set tics nomirror
# define grid
set style line 12 lc rgb '#808080' lt 0 lw 1
set grid back ls 12
# color definitions
set style line 1 lc rgb '#8b1a0e' pt 1 ps 1 lt 1 lw 2 # --- red
set style line 2 lc rgb '#5e9c36' pt 6 ps 1 lt 1 lw 2 # --- green
set key bottom right
set xlabel 'x axis label'
set ylabel 'y axis label'
set xrange [0:1]
set yrange [0:1]
plot 'data.dat' u 1:2 t 'Example line' w lp ls 1, \
'' u 1:3 t 'Another example' w lp ls 2