I want to explore various classification methods on a data set with many missing data. I tried imputing with cart method of mice since I was getting a singular error for the default method. My problem is that, after imputing, I still have missing data. What I did:
imputed_Data <- mice(stock, m=1, maxit = 5, method="cart", seed = 328)
data_det <- complete(imputed_Data)
Any insights greatly appreciated!