2
2
Data Set Available on kaggle (The last column of the dataset needs to be changed to 0 or 1)
Data Set : https://www.kaggle.com/mohansacharya/graduate-admissions
The counselor of the firm is supposed check whether the student will get an admission or not based on his/
her GRE score and Academic Score. So to help the counselor to take appropriate decisions build a
machine learning model classifier using Decision tree to predict whether a student will get admission or
not.
A. Apply Data pre-processing (Label Encoding, Data Transformation….) techniques if necessary.
B. Perform data-preparation (Train-Test Split)
C. Apply Machine Learning Algorithm
D. Evaluate Model.
Objective :
1. Download data set
2. Apply preprocessing
3. Apply Decision tree algorithm
Theory:
Decision Tree: is the most powerful and popular tool for classification and prediction. A Decision tree is a
flowchart-like tree structure, where each internal node denotes a test on an attribute, each branch
represents an outcome of the test, and each leaf node (terminal node) holds a class label.
Following is a sample data set
Algorithm
Conclusion
In this way we learn that to how to create Decision Tree based on given decision, Find the Root
Node of the tree using Decision tree Classifier.
Questions