Coder Social home page Coder Social logo

vasanthamukilan / implementation-of-decision-tree-classifier-model-for-predicting-employee-churn Goto Github PK

View Code? Open in Web Editor NEW

This project forked from akilamohan/implementation-of-decision-tree-classifier-model-for-predicting-employee-churn

0.0 0.0 0.0 5 KB

License: BSD 3-Clause "New" or "Revised" License

implementation-of-decision-tree-classifier-model-for-predicting-employee-churn's Introduction

Implementation-of-Decision-Tree-Classifier-Model-for-Predicting-Employee-Churn

AIM:

To write a program to implement the Decision Tree Classifier Model for Predicting Employee Churn.

Equipments Required:

  1. Hardware โ€“ PCs
  2. Anaconda โ€“ Python 3.7 Installation / Jupyter notebook

Algorithm

  1. Import pandas module and import the required data set.
  2. Find the null values and count them.
  3. Count number of left values.
  4. From sklearn import LabelEncoder to convert string values to numerical values.
  5. From sklearn.model_selection import train_test_split.
  6. Assign the train dataset and test dataset.
  7. From sklearn.tree import DecisionTreeClassifier.
  8. Use criteria as entropy.
  9. From sklearn import metrics.
  10. Find the accuracy of our model and predict the require values.

Program:

/*
Program to implement the Decision Tree Classifier Model for Predicting Employee Churn.
Developed by:Vasanthamukilan M
RegisterNumber:212222230167
*/
import pandas as pd
from sklearn.tree import plot_tree
import matplotlib.pyplot as plt
data=pd.read_csv("/content/Employee_EX6.csv")
data.head()
data.info()
data.isnull().sum()
data['left'].value_counts()
from sklearn.preprocessing import LabelEncoder
le=LabelEncoder()
data["salary"]=le.fit_transform(data["salary"])
data.head()
x=data[["satisfaction_level","last_evaluation","number_project","average_montly_hours","time_spend_company","Work_accident","promotion_last_5years","salary"]]
x.head()
y=data["left"]
from sklearn.model_selection import train_test_split
x_train,x_test,y_train,y_test=train_test_split(x,y,test_size=0.2,random_state=100)
from sklearn.tree import DecisionTreeClassifier
dt=DecisionTreeClassifier(criterion="entropy")
dt.fit(x_train,y_train)
y_pred=dt.predict(x_test)
from sklearn import metrics
accuracy=metrics.accuracy_score(y_test,y_pred)
print(accuracy)
dt.predict([[0.5,0.8,9,260,6,0,1,2]])
plt.figure(figsize=(18,6))
plot_tree(dt,feature_names=x.columns,class_names=['salary','left'],filled=True)
plt.show()

Output:

data.head():

image

data.info():

image

data.isnull().sum():

Screenshot 2024-04-03 134308

data["left"].value_counts():

Screenshot 2024-04-03 134316

data.head():

Screenshot 2024-04-03 134158

x.head()

image

accuracy:

Screenshot 2024-04-03 135041

dt.predict([[0.5,0.8,9,260,6,0,1,2]]):

Screenshot 2024-04-03 135330

Decision tree classifier model:

Screenshot 2024-04-03 135630

Result:

Thus the program to implement the Decision Tree Classifier Model for Predicting Employee Churn is written and verified using python programming.

implementation-of-decision-tree-classifier-model-for-predicting-employee-churn's People

Contributors

akilamohan avatar vasanthamukilan avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.