Hi, i need help in imputing categoriacla variables.. i tried below code but im not sure which value to use on the 'method' option...i have a variable called 'marital status' consistin of values 'single, married,widowed'...i need to do something like mode imputation
proc stdize data=data out=Imputed
oprefix=Orig_ /* prefix for original variables */
reponly /* only replace; do not standardize */
method=; /*ABW, AGK, AHUBER, AWAVE, EUCLEN, IN,IQR, LEAST, MAD, MAXABS, MEAN, MEDIAN, MIDRANGE, RANGE, SPACING, STD, SUM, UST*/
var Marital_status;
run;
... View more