Reputation: 59
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!
Upvotes: 0
Views: 960
Reputation: 59
My issue was solved with setting ridge = 0.0001 and threshold=1.1 and I got the complete dataset
Upvotes: 2