BookmarkSubscribeRSS Feed
deleted_user
Not applicable
I have been running multiple imputations on a dataset I have. The problem I'm getting is that there is no variability across imputations - the estimate is the same for each imputation. Can someone tell me what the problem is?
2 REPLIES 2
lamenramen
Calcite | Level 5
I too have had this issue, but I'm not sure what to do about it. I can't generate a covariance matrix either when this happens, which makes mianalyze not work.
Sekhar
Calcite | Level 5
Hi,

If you want to impute the missing values with mean or median or 0 or with any stats, you have to use Proc STDIZE procedure.The below is the example

proc stdize data=abc method=median reponly;
run;

For missing values if we want to impute with zeroes then the example would be

proc stdize data=abc missing=0 reponly;
run;

Kindly let me know if this useful or not.

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

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1190 views
  • 0 likes
  • 3 in conversation