wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Data Exploration Quiz

Total questions: 10

Worksheet time: 10mins

Name
Class
Date
1.

Correlation doesn’t imply causation and here are these types of correlation, Except

a)

Zero Correlation

b)

Positive Correlation

c)

Weak Correlation

d)

Negative Correlation

2.

Complete the following syntax!

import pandas as pd

import numpy as ….

Import matplotlib.pylot as plt

import seaborn as …

from scipy import ….

a)

pd, sbn , sns

b)

np, scipy, sns  

c)

np, sns, stats

d)

pd, sns, stats 

3.

What is the syntax to create output shown as follows?

a)

data.describe()

b)

grouped_test2=data_gptest[['Country_Name','Planes_in_Airport']].groupby(['Country_Name')

c)

grouped_test2.head(2)

d)

plt.hist(df.Country_Name)

4.

data.isnull().sum() is syntax to identify?

a)

Type data

b)

Data group

c)

Correlation

d)

Missing data

5.

To Create Descriptive Statistics, which syntax is appropriate?

a)

data.describe()

b)

data.describe []

c)

“data.(describe)”

d)

‘data.describe()’

6.

Complete the following syntax!

data_gptest = data[['………..', 'Type','……….']]

a)

['Country_Name', 'Type','Planes_in_Airport']

b)

('Country_Name', 'Type','Arrivals’)

c)

('Country_Name', 'Type','Planes_in_Airport')

d)

['Country_Name', 'Type','Arrivals’]

7.

What is a syntax to create output shown as follows?

a)

data.(tail)

b)

data.describe()

c)
d)

data.head()

8.

Which is the correct output from this syntax "data.dtypes"

a)

b)

c)

d)

9.

Complete the following syntax!

f_val, p_val = stats.f_oneway(grouped_test2.get_group('…………')['Planes_in_Airport'],

                              grouped_test2.get_group('…………')['Planes_in_Airport'])

a)

China, Indonesia

b)

Indonesia, Turkey

c)

China, Turkey

d)

Indonesia, China

10.

When did John Tukey propose exploratory data analysis (EDA) as a method for generating hypotheses using visualizations?

a)

1965

b)

1977

c)

1967

d)

1995