分类图的水平偏移

horizontal offset for categorical plot

对于以下分类图,我想在第一个类别的左侧和最后一个类别的右侧放置一些 space:

#abc.dat
a 1
b 2
c 3

在 gnuplot 中:

set yrange [0:4]
plot 'abc.dat' using 2:xticlabels(1) pointtype 7 pointsize 5

结果:

期望(大约):

如何做到这一点?我特别想要积分(而不是酒吧)。

命令set offsets在数据和轴之间添加一个space:

set offsets graph 0.05, graph 0.05

graph ... 表示相对于您的地块大小 space。