BookmarkSubscribeRSS Feed
fieldsa83
Quartz | Level 8

Can you save the results output to a libname or something?

2 REPLIES 2
Tom
Super User Tom
Super User

Can you explain what you mean? Anything run via EG is actually run using Base SAS.

ballardw
Super User

You can send the output to a data set using the OUT= option on the Proc Statement.

Proc tabulate data=sashelp.class out=mylib.tabulateoutput;

   class sex age;

   var height weight;

   table  sex*age all,

            (height weight)*(mean max min);

run;

   

 

HOWEVER the data does not look like what you may expect. The output data set has a number of variables that just tell where the resulting statitistic values appear because of the option in tabulate that allow nesting row and column values, creating multiple tables from a single procedure call and the "All" row/column options.

 

You might try dumping a small proc tabulate output to a set and then examime it closely to see if it will do what you want.

 

If you have never figured out the _type_ variable in proc summary or proc means output this may not be the approach for you.

 

I do use Proc tabulate to create data sets that I manipulate a bit to display latter with more control than a single Tabulate call allows but it is not a trivial operation.

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 815 views
  • 0 likes
  • 3 in conversation