I have a series with 20 rows and 60 columns i.e 20 examples each with 60 parameters.
kfold = StratifiedKFold(y=encoded_Y, n_folds=10, shuffle=True, random_state=seed) The output consists of two columns
I would like to know what does the second column mean and on what basis does it choose the two indexes. Why not take three indexes?
Furthur, I would like to know how does the cross validation function take this series as an input for the "cv" argument. "cv" is generally an integer.
results = cross_val_score(estimator, X, encoded_Y, cv=kfold)