This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
from sklearn.tree import DecisionTreeClassifier | |
from sklearn.preprocessing import LabelEncoder | |
from sklearn.model_selection import KFold, cross_val_score | |
df_drug = pd.read_csv("drug200.csv") | |
label_encoder = LabelEncoder() | |
categorical_features = [feature for feature in df_drug.columns if df_drug[feature].dtypes == 'O'] | |
for feature in categorical_features: | |
df_drug[feature]=label_encoder.fit_transform(df_drug[feature]) | |
X = df_drug.drop("Drug", axis=1) | |
y = df_drug["Drug"] | |
model = DecisionTreeClassifier(criterion="entropy") | |
model.fit(X, y) | |
kfold = KFold(random_state=42, shuffle=True) | |
cv_results = cross_val_score(model, X, y, cv=kfold, scoring="accuracy") | |
print(cv_results.mean(), cv_results.std()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment