Results with Original Nominal Values


Data is read in, nominal values are converted to numerical, the model is built and applied. All works okay, but my Results table has the converted nominal values and I would like to see the original nominal values alongside the predicted results instead.
Can someone give me a hint related to which operator(s) might help with generating a prediction result table with original nominal values? Thanks.
Webclipper
Can someone give me a hint related to which operator(s) might help with generating a prediction result table with original nominal values? Thanks.
Webclipper
0
Answers
if you are going to use a regression learner for classification, you just could use the ClassificationByRegression MetaLearner, which will hide the mapping to numerical and back. So you can use your learner without manually mapping the values.
But there are many learners, which are able to cope directly with nominal values, even polynomial values. For example the LibSVM.
I post an example below: Greetings,
Sebastian