BookmarkSubscribeRSS Feed
skallamp
Obsidian | Level 7

How do I achieve the same below code using Proc Summary or Proc means? Is there a way we can use the count and sum function together?

 

proc sql;

select distinct A, B, count(C), sum(D), sum(E)

from Table

group by A, B;

quit;

2 REPLIES 2
Reeza
Super User

Use proc means with the relevant statistic. You can specify the sum, count is N, mean, standard deviation. You can also specify them in the output out statement to capture the values in a data set.

 

proc means data=sashelp.class n sum mean;
var age;
output out=want sum=total n=count mean=average;
run;

FreelanceReinh
Jade | Level 19

Hi @skallamp,

 

This should come close:

proc summary data=table nway;
class A B / missing;
var C D E;
output out=stats(drop=_:) n(C)= sum(D E)=;
proc print;
run;

Edit: ... but only if C is a numeric variable! PROC MEANS/SUMMARY doesn't compute statistics for character variables, not even the N statistic (number of non-missing values). PROC SQL's COUNT function, however, works with either variable type.

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!

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