Hands-on with Python

CLASSIFICATION AND REGRESSION TREE Exercise 1: Develop a tree based model for predicting whether the customer will take pep using the customer profile data given in bank-data.csv? Use 80% of data to develop the model and validate the model using the remaining 20% of data? Reading data import pandas as mypd from sklearn import tree ................
................