BookmarkSubscribeRSS Feed
valdesan
Calcite | Level 5

I am using- ods graphics to obtain my graphs, what I can figure out is how to use the variable label instead of the variable name (which is usually kind of cryptic!)!

3 REPLIES 3
PGStats
Opal | Level 21

ODS graphics does use variable labels on axes labels:

data class;

set sashelp.class;

label weight="Weight (pounds)";

run;

proc sgplot;

scatter x=height y=weight;

run;

SGPlot.png

PG

PG
valdesan
Calcite | Level 5

here is what happens

ods graphics on;

proc logistic data=stage3concurrent plots(only)=oddsratio  (type=horizontalstat range=(0,3))  ;

CLASS urban regionvisn yeargroup (ref='2001-2004') EPvsTC stage numsquam;

model EPvsTC (event='Cisplatin and Etoposide')= yeargroup stage numsquam priorhosp age10 poslostweightperc fullhgb fullalb chrlson egfr2 /  risklimits lackfit rsquare parmlabel;

units egfr2=10 priorhosp=1 age10=1 poslostweightperc=1 fullhgb=1 fullalb=1 chrlson=1;

run;

ORPlot.png

how can a change the labels on the graph to the variable label?

Reeza
Super User

You'll probably have to modify the template Smiley Sad

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
  • 3 replies
  • 2898 views
  • 0 likes
  • 3 in conversation