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

data have;

  input id_no visit measurement;

  cards;

11 1 110

11 1 120

11 1 115

11 2 90

11 2 89

22 1 80

22 1 95

22 2 90

22 2 90

22 2 95

26 1 65

33 1 95

33 1 95

;

run;

for each visit, we take multiple measurement of the patient. we need to find the average of these measurements for each visit.

I run into problem trying to get the first or last visit for the same idno. so the expected output is:

11 1 115

11 2 89.5

22 1 88.3

etc...

1 ACCEPTED SOLUTION

Accepted Solutions
Haikuo
Onyx | Level 15

There will be many many ways to do it. The least mind-twisting method (may not be the fastest) is SQL:

proc sql;

   select id_no, visit, avg(measurement) as avg_m from have group by id_no, visit;quit;

Haikuo

View solution in original post

1 REPLY 1
Haikuo
Onyx | Level 15

There will be many many ways to do it. The least mind-twisting method (may not be the fastest) is SQL:

proc sql;

   select id_no, visit, avg(measurement) as avg_m from have group by id_no, visit;quit;

Haikuo

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1 reply
  • 757 views
  • 0 likes
  • 2 in conversation