FCS imputation specify different ignored rows for different imputation models #595
Replies: 1 comment 6 replies
-
Did you consider splitting the data into two sets: |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I want to impute missing data for two variables of my dataset with 10 colums/variables. For these two variables I use different imputation models by specifying the formula used for each of the variables. Thus for the two variables x9 andx10 I have individual differing formulas for the imputation. i.e. formula for x9~ x1 + x2 + x3 and x10~ x 1+ x4 + x5 where we can see that x9 is not a predictor of x10 and x10 is not used as a predictor for x9.
In addition to the different formulas I also want to train the two imputation models on different rows of the dataset where I would use the ignore functionality of mice. But with the ignore I can only specify one vector of TRUE and FALSE which would then be the same for both models (i.e. x9 and x10) but I want the models to be trained on differing rows of the data. How can I achieve that? Maybe I could solve that with blocks but I did not find more guidance about how to solve this. Thanks a lot!
Beta Was this translation helpful? Give feedback.
All reactions