我想在对点y上使用对数10
,1
,0.1
,0.01
,0.001
,{{1} }和0.0001
(不带尾随零)。您能否帮助我如何为我的GNUplot脚本提供这种格式?
答案 0 :(得分:0)
使用xtics
,ytics
等格式,您可以在其中添加或替换轴上的任何刻度标签。
set logscale y
set format y '%g'
set ytics add ('.00001' 0.00001, '.0001' 0.0001, '.001' 0.001, '.01' 0.01, '.1' 0.1)
答案 1 :(得分:0)
@Michael O.的解决方案之外的另一种解决方案:
### custom tics
reset session
set logscale y
set ytics nomirror
do for [n in "-10 -9 -8 -7 -6 -5 -4 -3 -2 -1"] {
set ytics add (".0000000000"[1:abs(n)]."1" 10**n)
}
set logscale y2
set format y2 "10^{%T}"
set y2tics 10 nomirror
set xrange[-10:3]
plot 10**x axis x1y1, 10**x axis x1y2
### end of code
顺便说一句,以防万一由于节省空间而要删除前导零的情况,格式10^{%T}
将节省更多空间(请参见右轴)。