GXYPLOT Call

RUN GXYPLOT (x, y) ;

This subroutine is deprecated.

The GXYPLOT draws a scatter plot of the data in the x and y arguments. The inputs to the GXYPLOT subroutine are as follows:

$x$

is any $n \times m$ matrix of $x$ values.

$y$

is a corresponding $n \times m$ matrix of $y$ values.

The GXYPLOT module draws a simple scatter plot of bivariate data, including axes with labeled tickmarks. You cannot produce graphics until you specify the CALL GSTART statement. The plot remains open for further additions (such as a title and axis labels) until you specify the CALL GCLOSE statement, which terminates the current graphics segment. The module uses the GPOINT, GXAXIS, and GYAXIS calls to plot the points. The module source code can be edited to specify many of the options available for these calls.