Hi!
I'm trying to impute missing creatinine values in a dataset using
I have missing values in variables y6_creat_followup and creatatsurg, but feel like these need to be in the model since they represent the creatinine values at surgery and creatinine values 6 year post surgery, and I want the creatinine values for 1 year post surgery.
My issue is now that multiple values become negative, as well as a lot of missing values (which I think is due to using independent variables with missing numbers, but still an issue). Any ideas of how to deal with this?
I'm trying to impute missing creatinine values in a dataset using
Code:
mi set mlong mi register imputed y1_creat_followup mi impute regress y1_creat_followup gender crenfail age creat_atsurg y6_creat_followup , add(20) rseed(1234) force
My issue is now that multiple values become negative, as well as a lot of missing values (which I think is due to using independent variables with missing numbers, but still an issue). Any ideas of how to deal with this?
Comment