You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The order of the x-axis is correct, it's the interpretation that is different: in the first plot it is really the number of features, in autoplot, each batch refers to each iteration in the RFE in this case and since you initialized with fs("rfe", n_features = 1, feature_number = 1) and sonar has 60 features in total, each batch "takes care" of each feature until 1 remains. So the 0 batch is all features, batch 1 is 59 features and so on.
Dear developers:
I'm learning the aritcle: Recursive Feature Elimination on the Sonar Data Set. Here's the code:
Here's the picture:
but when I used
autoplot(instance, type = "performance")
, it gave me the following picture:The order of x-axis is just opposite。
Is there something wrong?
my session info:
The text was updated successfully, but these errors were encountered: