robolax / dsc-1-02-16-measures-of-dispersion-quiz-online-ds-sp-000

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Measures of Dispersion - Quiz

Objectives

You will be able to:

  • Describe the significance of calculating measures of dispersion for continuous data
  • Understand the formula and intuition behind mean absolute deviation, standard deviation and variance
  • Understand the formula and intuition behind quantiles/quartiles and percentiles
  • Understand and interpret Interquartile distances with box plots

Exercise 1

Summary statistics for two samples of data are

Sample 1:	
mean = 19 
variance = 10

Sample 2:	
mean = 10
variance = 19

Which sample has the larger spread of observations?

# Your answer here 

Exercise 2

Consider the following ordered set of data

4 4 4 9 5 0 5 1 5 3 5 7 5 8 6 2

6 6 6 6 6 8 7 1 7 5 7 7 8 0 8 5
  • What is the IQR?
  • Optional extension: Verify your answer in Python
# Your answer here 

Exercise 3

Create a box-and-whisker plot for the judges' scores for an artist's performances in a talent competition.

Evan L	52
Nicole S  50
Pamela A  47
Chad O	44
Erin A	39
Jake P	38
Niecy N   36
Kate G	32

Create a box plot in matplotlib to identify the median for giving a final score to the artist. Are there any outliers ?

# Your answer here 
# # Your answer here 

Exercise 4

Imagine that the number of marriages registered over a 10 year period were as follows:

Table 1. Number of registered marriages

Year  Number of marriages

1	40,650
2	40,812
3	41,300
4	41,450
5	39,594
6	40,734
7	39,993
8	38,814
9	37,828
10   35,716

Using the data above:

Find the median

# Your answer here 

#### Find the upper and lower quartiles

# Q1 = 38.814 Q3 = 40.812 # Your answer here 

Calculate the interquartile range

# Your answer here 

Plot a boxplot to verify your answers

# Your answer here 

About

License:Other


Languages

Language:Jupyter Notebook 88.7%Language:Python 11.3%