Overplots a series onto a stripchart.
OVERPLOTALL(series, color)
series |
- |
Any series expression evaluating to a series. |
color |
- |
Optional. An integer, the color value of overplotted series. |
Nothing, the input window or series is overplotted onto the current window.
W1: stripchart(gnorm(1000, 1), gnorm(1000, 1))
W2: integ(w1)
W3: movavg(w2, 20);overplotall(w2, lred)
The stripchart data in W2 is synthesized by integrating two 1000 point series of normally distributed random noise. The series is smoothed via a 20 point moving average in W3. The unsmoothed source in W2 is overplotted in red on to W3 for visual comparison.
To remove all overplots from the stripchart, use:
unoverplotall(w3)
W1: stripchart(rand(1000, 4))
W2: rescale(integ(randn(1000, 1)), 0, 1);
W3: w1;overplotall(w2, lred)
W1 contains a 4 trace stripchart. W2 contains a single series scaled between 0 and 1. W3 copies the stripchart of W1 and the series in W2 is overplotted onto all the traces of the stripchart in W3.
See STRIPCHART and SETPLOTTYPE to create a stacked stripchart of multiple series.
Use UNOVERPLOTALL to remove overplots from a stripchart.