Skip to content

Commit

Permalink
Data Pre-processing Template (codebasics#5)
Browse files Browse the repository at this point in the history
* Linear Regression file

* Data Preprocessing Template
  • Loading branch information
mayankkestw authored Feb 23, 2020
1 parent 85f2348 commit d2d2fe4
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions ML/1_linear_reg/linearReg.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Data Preprocessing Template

# Importing the libraries
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd

# Importing the dataset
dataset = pd.read_csv('Data.csv')

X = dataset.iloc[:, :-1].values
y = dataset.iloc[:, 3].values

# Splitting the dataset into the Training set and Test set
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 = 0)

# Feature Scaling
from sklearn.preprocessing import StandardScaler
sc_X = StandardScaler()
X_train = sc_X.fit_transform(X_train)
X_test = sc_X.transform(X_test)
sc_y = StandardScaler()
y_train = sc_y.fit_transform(y_train)

0 comments on commit d2d2fe4

Please sign in to comment.