User guide

Any2-Dplottypemaybeaddedtoanyother2-Dplottype,withtheexceptionofcon-
tourplots,polarplotsandtimeseriesplots.Youmayaddapolarplottoapreviouspolar
plotoratimeseriesplottoatimeseriesplot.
Example
//Create and plot multivariate random normal data
rndseed 19823434;
cov = { 1 0.9, 0.9 1 };
mu = { 2, 2 };
y = rndMVn(300, mu, cov);
plotScatter(y[.,1], y[.,2]);
//Create line coordinates and add to scatter plot
x = { -0.3, 4.8 };
y2 = { 0, 4.3 };
plotAddXY(x, y2);
Figure6.7:ExampleAddingDatatoaPlot
6-12
GAUSSUser Guide