Conditional Mean Missing Imputation with SAS

Deepanshu Bhalla Add Comment

Suppose you need to impute missing values with conditional mean in SAS.

proc standard data = test replace out= outdata;
by b;
var a;
run;
Related Posts
Spread the Word!
Share
About Author:
Deepanshu Bhalla

Deepanshu founded ListenData with a simple objective - Make analytics easy to understand and follow. He has over 10 years of experience in data science. During his tenure, he worked with global clients in various domains like Banking, Insurance, Private Equity, Telecom and HR.

Post Comment 0 Response to "Conditional Mean Missing Imputation with SAS"
Next → ← Prev