Question: How do I fix this error? #importing the libraries import pandas as pd import numpy as np #reading the dataset df=pd.read_csv (Salary.csv) print (df.info) #

How do I fix this error?
#importing the libraries import pandas as pd import numpy as np #reading the dataset df=pd.read_csv ("Salary.csv") print (df.info) # Import label encoder from sklearn import preprocessing # label_encoder object knows how to understand word labels. label encoder = preprocessing.LabelEncoder ( ) # Encode labels in column 'Country'. data['Country']= label_encoder.fit_transform(data['Country']) print (data.head() ) Country Age Salary
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
