我有从0到100的y轴。我想要每10个单位后有一个网格线。我怎样才能做到这一点?也就是说,如何在每10个单位后绘制网格线?
答案 0 :(得分:6)
看看“帮助网格”,您可能想要做类似
的事情set yrange [0:100]
set xrange [0:10]
set grid ytics mytics # draw lines for each ytics and mytics
set mytics 2 # set the spacing for the mytics
set grid # enable the grid
plot sin(x)*100
答案 1 :(得分:2)
ytics
变量控制y
比例值的打印频率或稀疏程度,从而绘制网格线。
set ytics 10 # y scale marks and values will be at every 10th unit
set grid # grid turned on at each scale values
replot # replot your graph
mytics
控制y
刻度上的次要标记。 set grid mytics
使y
缩放次网格线可见。