-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataPreprocessingTemplate.py
More file actions
44 lines (36 loc) · 1.68 KB
/
Copy pathDataPreprocessingTemplate.py
File metadata and controls
44 lines (36 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Data Preprocessing Template
# Importing the libraries
import numpy as np
import pandas as pd
# Importing the dataset in current directory
dataset = pd.read_csv('DataPreProcessingDataset.csv')
#import the independent variable contains all rows and all columns
#import the dependent variable: The last column
X = dataset.iloc[:, :-1].values
Y = dataset.iloc[:, 3].values
#the below code for fill the missing data based on mean value
from sklearn.impute import SimpleImputer
#filling based on mean, median, most_frequent works for numerical values
missing_values = SimpleImputer(missing_values=np.nan,strategy="mean")
#Filling based on constant, uncomment the below line
#missing_values = SimpleImputer(missing_values=np.nan,strategy="constant",fill_value=20)
missing_values = missing_values.fit(X[:,1:3])
X[:,1:3]=missing_values.transform(X[:,1:3])
#encoding the categorical data
from sklearn.preprocessing import OneHotEncoder
from sklearn.compose import ColumnTransformer
ct = ColumnTransformer([('encoder', OneHotEncoder(), [0])], remainder='passthrough')
X = np.array(ct.fit_transform(X), dtype=np.float)
#encoding yes/no kind of data to 0/1
from sklearn.preprocessing import LabelEncoder
Y = LabelEncoder().fit_transform(Y)
#Splitting the dataset into training and tesing
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 = 10)
# Feature Scaling standardisation and normalization can be done
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.reshape(-1,1))