Description
This command creates a scatterplot graph using R (the 'plot' function in R) and displays it in the output window. The R commands used to create the scatterplot are also displayed. Type '? plot' at the R command prompt for further details.
This command is driven by R. Type 'citation' to see the suggested citation for R.
Syntax
r.plotxy(in, xfield, yfield, [where]);
| in | the input feature data source | |
| xfield | the name of field containing the x axis data to plot | |
| yfield | the name of field containing the y axis data to plot | |
| [where] | the selection statement that will be applied to the feature data source to identify a subset of features to process (see full Help documentation for further details) |
Example
r.plotxy(in="C:\data\points.shp", xfield="UTMX", yfield="UTMY");
r.plotxy(in="C:\data\parcels.shp", xfield="AREA", yfield="COST");