BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
miguelito
Fluorite | Level 6

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?

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

INTERPOL is under the SYMBOL statement and the options are listed under there.

 

http://support.sas.com/documentation/cdl/en/graphref/69717/HTML/default/viewer.htm#n0c0j84n1e2jz9n1b...

 

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. 

 

INTERPOL=STEP<placement><J><S>

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:

L

displays the data point on the left of the step.

R

displays the data point on the right of the step.

C

displays the data point in the center of the step.

In addition, specify one or both of these:

J

produces steps joined with a vertical line.

S

sorts unordered data by the independent variable before plotting.

View solution in original post

2 REPLIES 2
Reeza
Super User

INTERPOL is under the SYMBOL statement and the options are listed under there.

 

http://support.sas.com/documentation/cdl/en/graphref/69717/HTML/default/viewer.htm#n0c0j84n1e2jz9n1b...

 

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. 

 

INTERPOL=STEP<placement><J><S>

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:

L

displays the data point on the left of the step.

R

displays the data point on the right of the step.

C

displays the data point in the center of the step.

In addition, specify one or both of these:

J

produces steps joined with a vertical line.

S

sorts unordered data by the independent variable before plotting.

DanH_sas
SAS Super FREQ

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

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 2016 views
  • 1 like
  • 3 in conversation