I am new to imputation and EFA. I need to do EFA using 25 items on a Likert scale 1-5 or 1-4. 25% of sample have at least 1 variable with missing value. All items have some missing values. I need to use MICE to impute the missing values, but using Stata running into 'perfect predictions' issue. Getting error message even with augment
option. my code below
mi set mlong
mi register imputed A...Y
mi impute chained (ologit, augment) A..Y, add (5) rseed (345)
error message
convergence not achieved
ologit failed to converge on observed data
error occurred during imputation of A...Y
Appreciate any help with solving this issue.