|
From: <HBB...@t-...> - 2007-08-12 09:21:17
|
dups wrote:
> I would like to have a broken y axis for my plot. By "broken" i mean for
> example, one part going from 0.1 to 0.3 then 0.8 to 1 on the same axis
> without including ]0.3:0.8[. I can actually do that in multiplot mode, but
> maybe there's a simpliest way to do that ????
There's a simpler way, but not a very simple one.
yt(y)= (y <= 0.3) ? y : (y - 0.8 + 0.3 + 0.05)
set ytics (0.0, 0.1, 0.2, 0.3, \
'0.8' yt(0.8), '0.9' yt(0.9), '1.0' yt(1))
set border 5
# draw y axes and // marks by 'set arrow' here...
plot yt(f(x))
|