在我使用自定义设置后,嘿伙计们有没有办法重置或使用xtics(或ytics)的默认设置。
我需要这样的东西:
set ytics 0.005 nomirror
set y2tics 5 nomirror
plot 'dummy' u 1:2 axes x1y1, dummy2 u 1:2 axes x1y2
##Another plot with "normal" axes
set ytics default (this command doesn't exist but this is what I need)
set y2tics default
plot 'dummy3' u 1:2
因此,如果该命令实际存在,那将解决我的问题,因为我现在所拥有的是第二个图正在使用,当然是为前一个定义的ytics。我不想使用重置选项,因为我不想在我的脚本中再次定义所有内容。
非常感谢!
答案 0 :(得分:1)
你可以在第二个情节之前放reset
。但它会重置一切,对你来说可能是一种矫枉过正。
您也可以使用set ytics auto
。它可能会更好。
最佳,
答案 1 :(得分:0)
来自gnuplot帮助:
对于x和y轴上的抽搐,默认值为
border mirror norotate
border nomirror norotate
用于x2和y2轴上的抽搐。
所以,你的命令应该是:
set ytics border mirror norotate autofreq
set y2tics border nomirror norotate autofreq
答案 2 :(得分:0)
使用:
unset ytics
来自http://www.gnuplot.info/docs_4.2/node295.html
The tics may be turned off with the unset xtics command