Code Monkey home page Code Monkey logo

implementation-of-decision-tree-regressor-model-for-predicting-the-salary-of-the-employee's Introduction

Implementation-of-Decision-Tree-Regressor-Model-for-Predicting-the-Salary-of-the-Employee

AIM:

To write a program to implement the Decision Tree Regressor Model for Predicting the Salary of the Employee.

Equipments Required:

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

Algorithm

  1. Import the required libraries .
  2. Read the data frame using pandas.
  3. Get the information regarding the null values present in the dataframe.
  4. Apply label encoder to the non-numerical column inoreder to convert into numerical values.
  5. Determine training and test data set.
  6. Apply decision tree regression on to the dataframe.
  7. Get the values of Mean square error, r2 and data prediction.

Program:

Program to implement the Decision Tree Regressor Model for Predicting the Salary of the Employee.
Developed by: Sri Varshan P
RegisterNumber:  212222240104



import pandas as pd
data=pd.read_csv("/content/Salary.csv")

data.head()

data.info()

data.isnull().sum()

from sklearn.preprocessing import LabelEncoder
le=LabelEncoder()
data["Position"]=le.fit_transform(data["Position"])
data.head()

x=data[["Position","Level"]]
y=data["Salary"]

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=2)

from sklearn.tree import DecisionTreeRegressor
dt=DecisionTreeRegressor()
dt.fit(x_train,y_train)
y_pred=dt.predict(x_test)

from sklearn import metrics
mse=metrics.mean_squared_error(y_test,y_pred)
mse

r2=metrics.r2_score(y_test,y_pred)
r2

dt.predict([[5,6]])

Output:

data.head()

276262885-d6b4cb40-1795-4b64-8683-7acc5b701051

data.info()

276262851-d410937e-837d-4ce0-ae0d-d18246cbb07b

isnull() & sum() function

276262814-1ac338d8-7d40-403a-90e4-48a7d6fc03cb

data.head() for position

276262767-8b81fa42-a87e-49a8-8129-884c0e6de355

MSE value

276262714-7afc264d-6718-4b8e-a234-aea823b90e0e

R2 value

276262661-f0e9b89b-40d0-442c-bead-4ecbfe53aa62

Prediction value

276262449-49a799ab-6bf5-45d7-8024-83e39b739903

Result:

Thus the program to implement the Decision Tree Regressor Model for Predicting the Salary of the Employee is written and verified using python programming.

implementation-of-decision-tree-regressor-model-for-predicting-the-salary-of-the-employee's People

Contributors

akilamohan avatar psrivarshan 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.