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

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