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

Hello,

I'm trying to create a report based off of the freq of multiple variables.  This is how I'm currently doing it.

filename rptTemp "c:\temp\temp.txt" ;

proc printto print=rptTemp new ;

run ;

title 'Frequency var1 from tempData' ;

proc freq data = tempData ;

    table var1 /nocol norow nopercent missing;

run ;

title 'Frequency var2 from tempData' ;

proc freq data = tempData ;

    table var2 /nocol norow nopercent missing;

run ;

title 'Frequency var3 from tempData' ;

proc freq data = tempData ;

    table var3 /nocol norow nopercent missing;

run ;

title;

proc printto;

run ;

1. Is there a better way to do this?

2. How can I add a blank row after each proc freq?

3. There are about 10 variables I need to do this for to see exactly what is contained in the dat

Thank you

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Can you include all your variables in a single proc freq?

  1. proc freq data = tempData ; 
  2.     table _all_ /nocol norow nopercent missing; 
  3. run ; 

View solution in original post

2 REPLIES 2
Reeza
Super User

Can you include all your variables in a single proc freq?

  1. proc freq data = tempData ; 
  2.     table _all_ /nocol norow nopercent missing; 
  3. run ; 
jerry898969
Pyrite | Level 9

I always miss the obvious.  Sorry for wasting your time.  I was looking at it a bit differently.

Thank you again.

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!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1111 views
  • 0 likes
  • 2 in conversation