Previous Page | Next Page

The SGSCATTER Procedure

Example 1: Creating a Scatter Plot Matrix


Procedure features:

MATRIX statement

GROUP option

Sample library member: GSGSCMAT

[untitled graphic]

This example shows a scatter plot matrix with grouped data.

 Note about code
proc sgscatter data=sashelp.iris;
  title "Scatterplot Matrix for Iris Data";
  matrix sepallength petallength sepalwidth petalwidth
         / group=species;
run;

Previous Page | Next Page | Top of Page