Previous Page | Next Page

The G3D Procedure

Example 4: Generating a Scatter Plot


Procedure features:

Scatter statement

Sample library member: GTDSCAT

[Scatter plot of sashelp.iris data set]

This scatter plot examines the results of measuring the petal length, petal width, and sepal length for the flowers of three species of irises. The Scatter statement in this example relies on the procedure defaults to:

 Note about code
goptions reset=all border;
 Note about code
title1 "Iris Species Classification";
title2 "Physical Measurement";
title3 "Source: Fisher (1936) Iris Data";
footnote1 j=r "Sepal Width not Shown";
 Note about code
proc g3d data=sashelp.iris;
  scatter PetalLength*PetalWidth=SepalLength;
run;
quit;

Previous Page | Next Page | Top of Page