Find Missing Values in a Data Set

Find Missing Values in a Data Set

12th Grade

7 Qs

quiz-placeholder

Similar activities

Gr.12_IP_Python Pandas

Gr.12_IP_Python Pandas

12th Grade

5 Qs

Python pandas 🐼

Python pandas 🐼

12th Grade

10 Qs

Dataframe

Dataframe

12th Grade

12 Qs

Data Frame1

Data Frame1

12th Grade

10 Qs

Pandas- CSV file

Pandas- CSV file

12th Grade

12 Qs

Solve Questions on DataFrame

Solve Questions on DataFrame

12th Grade

6 Qs

Checkpoint 1 revision

Checkpoint 1 revision

9th - 12th Grade

9 Qs

Pandas

Pandas

9th - 12th Grade

7 Qs

Find Missing Values in a Data Set

Find Missing Values in a Data Set

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Barbara White

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

The function to fill in NAN values with 100,if df is the dataframe object

fillna(100)

df.fillna(100)

df.fillna(0)

df.fill(100)

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Function to drop the rows with NAN values

df.drop()

df.dropna()

df.delete

df.deletena()

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Missing values are the values that carry no computational significance.

False

True

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

............... can be used to detect missing values for a dataframe object df.

df.null()

df.isnull()

df.isempty()

df.nonnull()

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which among the following is correct to filter values from a series object S having values less than 50?

S[S less than 50]

S[S < 50]

[S < 50]

S ( S <50)

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which function will drop rows that have all NaN values?

dropna(how="all")

dropna()

dropna(axis=1)

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which function will copy the value from the above adjacent cell?

fillna()

fillna(method="ffill")

fillna(dictionary object)