BookmarkSubscribeRSS Feed
s_manoj
Quartz | Level 8

Hi all,

      Can anyone guide me that, how to create multiple outputs from a single proc means step.

 

for example, I have code like:

 

proc means data = have;

class sex;

var age salary loan;

output out = --------;

run;

 

wrt to above code, I would require three outputs for age, salary, and loan separately.

 

Thanks in advance

3 REPLIES 3
pau13rown
Lapis Lazuli | Level 10

my answer won't be right but it will be quick: try proc summary, or transpose data set, new variable called 'parameter' which assumes values 'age', 'salary' and 'loan' and then:

 

ods output ....;

proc means data=;

var var;

by parameter;

run;

Tom
Super User Tom
Super User

What do you mean by multiple outputs?

 

If you want to make multiple separate datasets then add multiple OUTPUT statements.

proc summary data=sashelp.class ;
  class sex ;
  var age height ;
  output out=xx mean(age)=age ;
  output out=yy mean(height)=height ;
run;
s_manoj
Quartz | Level 8
Thank you for replay,
multiple outputs in the sense.. multiple datasets of variable specific.
thank you.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 2056 views
  • 7 likes
  • 3 in conversation