# Use Random Forest
from sklearn.ensemble import RandomForestClassifier
model = RandomForestClassifier(random_state = 0, n_estimators = 100, criterion = 'entropy')
model.fit(X_eda, y_eda[0])
# K-fold Cross Validation
from sklearn.model_selection import cross_val_score
accuracies = cross_val_score(estimator = model, X= X_eda, y = y_eda[0], cv = 10)
print('Random Forest Classifier Accuracy: %0.2f (+/- %0.2f)' % (accuracies.mean(), accuracies.std() * 2))