Hi,
Currently using version 14.1 with a dataset of 115 variables and around 27,000 observations. However my complete case analysis sample size requires the use of multiple imputation, which is where I am having issues.
I have written my MI code as so:
mi set mlong
mi register imputed [varlist of variables to be imputed]
set seed 130495
mi impute chained (ologit) [varlist of ordinal variables] (logit) [varlist of binary variables] (regress) [varlist of continuous variables] = [varlist of auxiliary variables], add(10) rseed(130495)
It then returns the 'invalid add' error message with no further details and I haven't found any other information about troubleshooting this.
Any advice or guidance is much appreciated.
Thank you,
Rachel
Currently using version 14.1 with a dataset of 115 variables and around 27,000 observations. However my complete case analysis sample size requires the use of multiple imputation, which is where I am having issues.
I have written my MI code as so:
mi set mlong
mi register imputed [varlist of variables to be imputed]
set seed 130495
mi impute chained (ologit) [varlist of ordinal variables] (logit) [varlist of binary variables] (regress) [varlist of continuous variables] = [varlist of auxiliary variables], add(10) rseed(130495)
It then returns the 'invalid add' error message with no further details and I haven't found any other information about troubleshooting this.
Any advice or guidance is much appreciated.
Thank you,
Rachel
Comment