##We apply Label Encoding on black Friday dataset on the target column which is Species. It contains three species Iris-setosa, Iris-versicolor, Iris-virginica.
# Import libraries
import numpy as np
import pandas as pd
# Importing dataset
df = pd.read_csv('../../data/blackFriday.csv')
#Cheking out the unique values in your dataset
df['Age'].unique()
# Import label encoder
from sklearn import preprocessing
# label_encoder object knows how to understand word labels.
label_encoder = preprocessing.LabelEncoder()
# Encode labels in column 'Age'.
df['Age']= label_encoder.fit_transform(df['Age'])
df['Age'].unique()