I am trying to apply multiple imputation method to account for missing values in my dataset. Holdings is a continuous variable, convenience is a categorical variable and credit is a dummy variable.
(1) When I use the following commands, it states “option augument() incorrectly specified" when I type the code: below. How do i resolve this please?
Also:
(2) How can i set a constraint values are between 0 and 1 for my continuous variable
(3) After using these commands, I understand that the dataset introduces new variables e.g. _1_holdings up to 20. Where do i go from here to ensure the missing values are filled in?
Thanks very much!
(1) When I use the following commands, it states “option augument() incorrectly specified" when I type the code: below. How do i resolve this please?
Code:
mi set wide mi register imputed holdings convenience credit mi register regular age mi impute chained (regress) holdings (logit) credit (mlogit) convenience = age add(20) rseed(1234) augment
(2) How can i set a constraint values are between 0 and 1 for my continuous variable
(3) After using these commands, I understand that the dataset introduces new variables e.g. _1_holdings up to 20. Where do i go from here to ensure the missing values are filled in?
Thanks very much!
Comment