Reputation: 23
In a dataset with numerical values in classes, for example like this:
Class: 1.0, 2.0, 3.0, 4.0
WEKA open the dataset understanding Class label as a numerical, but I need WEKA interpret that variable as a categorical variable.
I need to get something like this, but in WEKA:
data$Class = as.factor(data$Class)
Upvotes: 0
Views: 394