Hello,
I am producing gplots using the proc gplot procedure that is available in SAS/GRAPH and I am wondering where I can get the whole list of Interpol methods (e.g., join, steplj, etc.) and where I can get an accurate description of the method called 'steplj'? I looked at the documentation and I was not able to find it anywhere. Is there an new alternative for steplj in the new STAT/GRAHP?
INTERPOL is under the SYMBOL statement and the options are listed under there.
In your case, STEPLJ means plotted with a step function, displays teh data point on the left of the step and produces steps with joined lines.
specifies that the data are plotted with a step function. By default, the data point is on the left of the step, the steps are not joined with a vertical line, and the data are not sorted before processing.
Specify one of these values for placement:
displays the data point on the left of the step.
displays the data point on the right of the step.
displays the data point in the center of the step.
In addition, specify one or both of these:
produces steps joined with a vertical line.
sorts unordered data by the independent variable before plotting.
INTERPOL is under the SYMBOL statement and the options are listed under there.
In your case, STEPLJ means plotted with a step function, displays teh data point on the left of the step and produces steps with joined lines.
specifies that the data are plotted with a step function. By default, the data point is on the left of the step, the steps are not joined with a vertical line, and the data are not sorted before processing.
Specify one of these values for placement:
displays the data point on the left of the step.
displays the data point on the right of the step.
displays the data point in the center of the step.
In addition, specify one or both of these:
produces steps joined with a vertical line.
sorts unordered data by the independent variable before plotting.
The list of interpolations can be found here: http://support.sas.com/documentation/cdl/en/graphref/69717/HTML/default/viewer.htm#n0c0j84n1e2jz9n1b...
As for "STEPLJ", that is a joined (J) step plot where the data points justified to the left (L) side fo the step. The is actually the default way that STEP plots are rendered in ODS graphics.
proc sort data=sashelp.class out=class; by weight; run;
proc sgplot data=class (obs=4);
step x=weight y=height;
scatter x=weight y=height;
run;
You can use the JUSTIFY option to change the of the data value along the step.
Hope this helps!
Dan
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.