BookmarkSubscribeRSS Feed
HG
Calcite | Level 5 HG
Calcite | Level 5

Dear All,

I have attached my sample dataset and the output I would like to produce. What procedures should I use?

Thank you very much for your help!


sasmple output.png
3 REPLIES 3
Reeza
Super User

How are the numbers being calculated? ie avg? stdev?

HG
Calcite | Level 5 HG
Calcite | Level 5

Hi Reeza,

the numbers are counts of var?=1. for example,  234(98.73%), it means that there are 234 var1=1 in 2009, 234/237=98.73%.  237 is the total number in 2009.

Thank you!

Reeza
Super User

Use proc means then, but it won't be as nice format, that will take some work Smiley Happy

proc means data=have nways;

class year;

output out=want n(var1)=total sum(var)=var1 mean(var1)=pct_var1 sum(var2)=var2 sum(var3)=var3 sum(var4)=var4;

run;

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