gnuplot - 将分数放入轴标签

时间:2016-04-10 11:34:38

标签: plot format gnuplot axis axis-labels

我有一个对数记录图,以1/32为单位计算2的幂。

如何制作轴标签< 1显示为分数,而不是小数(例如1/32而不是0.03125)?

1 个答案:

答案 0 :(得分:4)

您必须手动单独标记抽动:

set xtics ("1/2" .5, "1/4" 0.25, "1/8" .125, ...)

或自动:

set logsc x; set xr [1./32:1]
set xtics ("1",1) # remove all tics and set one initial tic
do for [i=1:5] {set xtics add (sprintf("1/%.f",2**i) 1./2**i)}
plot x