Missing Data

Missing Data

12th Grade

7 Qs

quiz-placeholder

Similar activities

Find Missing Values in a Data Set

Find Missing Values in a Data Set

12th Grade

7 Qs

Gr.12_IP_Python Pandas

Gr.12_IP_Python Pandas

12th Grade

5 Qs

DATAFRAME AND SERIES

DATAFRAME AND SERIES

12th Grade

10 Qs

Dataframe

Dataframe

10th - 12th Grade

12 Qs

Python Pandas

Python Pandas

11th - 12th Grade

10 Qs

Data Handling Introduction

Data Handling Introduction

12th Grade

10 Qs

Python Pandas (ai gen)

Python Pandas (ai gen)

12th Grade

10 Qs

pandas3

pandas3

12th Grade

10 Qs

Missing Data

Missing Data

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)