BookmarkSubscribeRSS Feed
acm246
Calcite | Level 5

I have a data set with a list of ID numbers and type of involvement. The types are either "event attendance" or "leadership". I need to create a count for each ID that weights each 'event attendance' as .5 and each "leadership" as 2. How do I do this?

3 REPLIES 3
Tom
Super User Tom
Super User

Code a new variable and sum that.

data want ;

  set have;

  if involvement='event attendence' then wt=.5;

else if involvement='leadership' then wt=2;

run;

ballardw
Super User

continuing from last post:

Proc freq data=want;

table involvement;

weight wt;

run;

Peter_C
Rhodochrosite | Level 12

and the sql alternative

proc sql ;

   create table summary as select id, sum(

      case

         when  involvement='event attendence' then .5

         when involvement='leadership' then .2

         else 0

      end ) as weighted_count

   from your_data

   group by ID

;

quit ;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 3 replies
  • 3774 views
  • 0 likes
  • 4 in conversation