-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecision_tree.py
34 lines (26 loc) · 1.13 KB
/
decision_tree.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Importar las bibliotecas necesarias
from sklearn.datasets import load_iris
from sklearn.model_selection import train_test_split
from sklearn.tree import DecisionTreeClassifier
from sklearn.metrics import accuracy_score
# Cargar el conjunto de datos Iris
iris = load_iris()
X = iris.data # Características
y = iris.target # Etiquetas de clase
# Dividir los datos en conjunto de entrenamiento y prueba
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=42)
# Crear un modelo de Árbol de Decisión
tree_clf = DecisionTreeClassifier(random_state=42)
# Entrenar el modelo con los datos de entrenamiento
tree_clf.fit(X_train, y_train)
# Realizar predicciones con los datos de prueba
y_pred = tree_clf.predict(X_test)
# Calcular la precisión del modelo
accuracy = accuracy_score(y_test, y_pred)
print(f"Precisión del Árbol de Decisión: {accuracy:.2f}")
# Visualización opcional del árbol (requiere graphviz)
from sklearn.tree import plot_tree
import matplotlib.pyplot as plt
plt.figure(figsize=(12, 8))
plot_tree(tree_clf, filled=True, feature_names=iris.feature_names, class_names=iris.target_names)
plt.show()