Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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) #

image text in transcribed

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 NameError Traceback (most recent call last) in 12 label_encoder = preprocessing. LabelEncoder() 13 # Encode labels in column 'Country' 14 data[ 'Country']= label_encoder.fit_transform(data['Country']) 15 print (data.head()) NameError: name 'data' is not defined

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

1. Define the goals of persuasive speaking

Answered: 1 week ago