BookmarkSubscribeRSS Feed
lgutm18
Fluorite | Level 6

Hello,

I am trying to perform imputation of missing values with the MODE in a few categorical variables, but have not been successful yet. I'd greatly appreciate some insight. 

1 REPLY 1
Ksharp
Super User
data have;
 set sashelp.heart(keep=smoking_Status);
run;



proc freq data=have order=freq;
table smoking_Status /out=mode;
run;
data mode2(rename=(smoking_Status=_smoking_Status));
 set mode(keep=smoking_Status where=(smoking_Status is not missing) obs=1);
run;
data want;
 set have;
 if _n_=1 then set mode2;
 if missing(smoking_Status) then smoking_Status=_smoking_Status;
 drop _smoking_Status;
run;

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
  • 449 views
  • 1 like
  • 2 in conversation