I suspect I'm describing the problem poorly. Let me make it
more concrete. Suppose I have these data:
0 0 0
10 10 0
20 20 1
30 30 0
40 40 -1
50 50 -1
60 60 0
70 70 -1
80 80 1
90 90 1
100 100 0
If I plot '-' 1:2 with lines, I get a nice straight line from
0,0 to 100,100. If I plot '-' 1:3 with impules, I see the
impulses plotted as vertical lines with a starting point 0 and a
height of 1 or -1. I'd like for the impulses to start at the
current y value. For instance, the impulse for the third row of
data above would be a vertical line from 20,20 to 20,21. The
visual effect would be "hair" on one of the time series plots.
Is this possible? If not, are there are other data presentation
techniques that will let me superimpose the indicators on the
other plotted data? I've tried plotting 1:($2+$3) with dots or
points. The dots are essentially invisible. When plotting with
points, the displayed marker for the zero values pretty much
obscures the base time series.
Thanks,
--
Skip Montanaro
sk...@pobox.com
scale = 10.
plot '-' using 1:2:(0):(scale*column(3)) with vectors
--
Ethan A Merritt
Thanks,
Skip