201k views
4 votes
How to import decision tree from sklearn

User Geet
by
7.5k points

1 Answer

5 votes

Final answer:

To import a decision tree from sklearn, install the library, import the DecisionTreeClassifier class, create an instance of the class, and fit the model to your data.

Step-by-step explanation:

To import a decision tree from the scikit-learn library in Python, you need to follow the following steps:

  1. Install scikit-learn library using the command 'pip install sklearn'.
  2. Import the decision tree class from the sklearn.tree module using the statement: from sklearn.tree import DecisionTreeClassifier.
  3. Create an instance of the DecisionTreeClassifier class using the statement: dt = DecisionTreeClassifier().
  4. Fit the decision tree model to your data using the 'fit' function, specifying the input features and target variable.

Here's an example:

from sklearn.tree import DecisionTreeClassifier
dt = DecisionTreeClassifier()
X = [[2, 3], [4, 5], [6, 7]]
y = [0, 1, 1]
dt.fit(X, y)

User WillyC
by
7.9k points