I have a data set with 30% of the data missing. I searched about imputing the data and i realized that using inference-based tool as decision tree induction is the most appropriate tool.
My problem
=========
when building the decision tree it is only used to predict the class label (one attribute). but how can i use this model to predict different attribute values at the same time.
i.e. consider the data set for credit bank risk
the attributes are (Debit, income, married) and the class label (Risk), the data set contains missing values in each attribute with no missing values in the class label and I'd like to predict these values using the decision tree. Is this mean that i must build a separate decision tree for each attribute????