Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"###### Content modified under Creative Commons Attribution license CC-BY 4.0, code under BSD 3-Clause License © 2020 Ryan C. Cooper"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Cheers! Stats with Beers\n",
"\n",
"\n",
"Welcome to the second module in _Computational Mechanics_, our series in computational thinking for undergraduate engineering students. This module explores practical data and statistical analysis with Python.\n",
"\n",
"This first lesson explores how we can answer questions using data combined with practical methods from statistics.\n",
"\n",
"We'll need some fun data to work with. We found a neat data set of canned craft beers in the US, scraped from the web and cleaned up by Jean-Nicholas Hould ([@NicholasHould](https://twitter.com/NicholasHould?lang=en) on Twitter)—who we want to thank for having a permissive license on his GitHub repository so we can reuse his [work](https://github.com/nickhould/craft-beers-dataset)!\n",
"\n",
"The data source ([@craftcans](https://twitter.com/craftcans) on Twitter) doesn't say that the set includes *all* the canned beers brewed in the country. So we have to asume that the data is a sample and may contain biases.\n",
"\n",
"We'll process the data using **numpy**—the array library for Python that we learned about in [Module 1, lesson 2: Getting Started](../../CompMech01-Getting-started/notebooks/02-Getting-started.ipynb). But we'll also learn about a new Python library for data analysis called **pandas**. \n",
"\n",
"[`pandas`](http://pandas.pydata.org/) is an open-source library providing high-performance, easy-to-use data structures and data-analysis tools. Even though `pandas` is great for data analysis, we won't exploit all its power in this lesson. But we'll learn more about it later on!\n",
"\n",
"We'll use `pandas` to read the data file (in `csv` format, for comma-separated values), display it in a nice table, and extract the columns that we need—which we'll convert to `numpy` arrays to work with.\n",
"\n",
"Let's start by importing the two Python libraries that we need."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import pandas as pd\n",
"import numpy as np"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 1: Read the data file\n",
"\n",
"Below, we'll take a peek into the data file, `beers.csv,` using the system command `head` (which we can use with a bang, thanks to IPython).\n",
"\n",
"But first, we will download the data using a Python library for opening a URL on the Internet. We created a short URL for the data file in the public repository with our course materials.\n",
"\n",
"The cell below should download the data in your current working directory. The next cell shows you the first few lines of the data."
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
",abv,ibu,id,name,style,brewery_id,ounces\n",
"0,0.05,,1436,Pub Beer,American Pale Lager,408,12.0\n",
"1,0.066,,2265,Devil's Cup,American Pale Ale (APA),177,12.0\n",
"2,0.071,,2264,Rise of the Phoenix,American IPA,177,12.0\n",
"3,0.09,,2263,Sinister,American Double / Imperial IPA,177,12.0\n",
"4,0.075,,2262,Sex and Candy,American IPA,177,12.0\n",
"5,0.077,,2261,Black Exodus,Oatmeal Stout,177,12.0\n",
"6,0.045,,2260,Lake Street Express,American Pale Ale (APA),177,12.0\n",
"7,0.065,,2259,Foreman,American Porter,177,12.0\n",
"8,0.055,,2258,Jade,American Pale Ale (APA),177,12.0\n"
]
}
],
"source": [
"!head \"../data/beers.csv\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We can use `pandas` to read the data from the `csv` file, and save it into a new variable called `beers`. Let's then check the type of this new variable—rememeber that we can use the function `type()` to do this."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"beers = pd.read_csv('../data/beers.csv')"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"pandas.core.frame.DataFrame"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"type(beers)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"This is a new data type for us: a `pandas DataFrame`. From the `pandas` documentation: \"A `DataFrame` is a 2-dimensional labeled data structure with columns of potentially different types\" [4]. You can think of it as the contens of a spreadsheet, saved into one handy Python variable. If you print it out, you get a nicely laid-out table: "
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Unnamed: 0</th>\n",
" <th>abv</th>\n",
" <th>ibu</th>\n",
" <th>id</th>\n",
" <th>name</th>\n",
" <th>style</th>\n",
" <th>brewery_id</th>\n",
" <th>ounces</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>0</td>\n",
" <td>0.050</td>\n",
" <td>NaN</td>\n",
" <td>1436</td>\n",
" <td>Pub Beer</td>\n",
" <td>American Pale Lager</td>\n",
" <td>408</td>\n",
" <td>12.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1</td>\n",
" <td>0.066</td>\n",
" <td>NaN</td>\n",
" <td>2265</td>\n",
" <td>Devil's Cup</td>\n",
" <td>American Pale Ale (APA)</td>\n",
" <td>177</td>\n",
" <td>12.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>2</td>\n",
" <td>0.071</td>\n",
" <td>NaN</td>\n",
" <td>2264</td>\n",
" <td>Rise of the Phoenix</td>\n",
" <td>American IPA</td>\n",
" <td>177</td>\n",
" <td>12.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>3</td>\n",
" <td>0.090</td>\n",
" <td>NaN</td>\n",
" <td>2263</td>\n",
" <td>Sinister</td>\n",
" <td>American Double / Imperial IPA</td>\n",
" <td>177</td>\n",
" <td>12.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>4</td>\n",
" <td>0.075</td>\n",
" <td>NaN</td>\n",
" <td>2262</td>\n",
" <td>Sex and Candy</td>\n",
" <td>American IPA</td>\n",
" <td>177</td>\n",
" <td>12.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>...</th>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2402</th>\n",
" <td>2405</td>\n",
" <td>0.067</td>\n",
" <td>45.0</td>\n",
" <td>928</td>\n",
" <td>Belgorado</td>\n",
" <td>Belgian IPA</td>\n",
" <td>424</td>\n",
" <td>12.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2403</th>\n",
" <td>2406</td>\n",
" <td>0.052</td>\n",
" <td>NaN</td>\n",
" <td>807</td>\n",
" <td>Rail Yard Ale</td>\n",
" <td>American Amber / Red Ale</td>\n",
" <td>424</td>\n",
" <td>12.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2404</th>\n",
" <td>2407</td>\n",
" <td>0.055</td>\n",
" <td>NaN</td>\n",
" <td>620</td>\n",
" <td>B3K Black Lager</td>\n",
" <td>Schwarzbier</td>\n",
" <td>424</td>\n",
" <td>12.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2405</th>\n",
" <td>2408</td>\n",
" <td>0.055</td>\n",
" <td>40.0</td>\n",
" <td>145</td>\n",
" <td>Silverback Pale Ale</td>\n",
" <td>American Pale Ale (APA)</td>\n",
" <td>424</td>\n",
" <td>12.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2406</th>\n",
" <td>2409</td>\n",
" <td>0.052</td>\n",
" <td>NaN</td>\n",
" <td>84</td>\n",
" <td>Rail Yard Ale (2009)</td>\n",
" <td>American Amber / Red Ale</td>\n",
" <td>424</td>\n",
" <td>12.0</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>2407 rows × 8 columns</p>\n",
"</div>"
],
"text/plain": [
" Unnamed: 0 abv ibu id name \\\n",
"0 0 0.050 NaN 1436 Pub Beer \n",
"1 1 0.066 NaN 2265 Devil's Cup \n",
"2 2 0.071 NaN 2264 Rise of the Phoenix \n",
"3 3 0.090 NaN 2263 Sinister \n",
"4 4 0.075 NaN 2262 Sex and Candy \n",
"... ... ... ... ... ... \n",
"2402 2405 0.067 45.0 928 Belgorado \n",
"2403 2406 0.052 NaN 807 Rail Yard Ale \n",
"2404 2407 0.055 NaN 620 B3K Black Lager \n",
"2405 2408 0.055 40.0 145 Silverback Pale Ale \n",
"2406 2409 0.052 NaN 84 Rail Yard Ale (2009) \n",
"\n",
" style brewery_id ounces \n",
"0 American Pale Lager 408 12.0 \n",
"1 American Pale Ale (APA) 177 12.0 \n",
"2 American IPA 177 12.0 \n",
"3 American Double / Imperial IPA 177 12.0 \n",
"4 American IPA 177 12.0 \n",
"... ... ... ... \n",
"2402 Belgian IPA 424 12.0 \n",
"2403 American Amber / Red Ale 424 12.0 \n",
"2404 Schwarzbier 424 12.0 \n",
"2405 American Pale Ale (APA) 424 12.0 \n",
"2406 American Amber / Red Ale 424 12.0 \n",
"\n",
"[2407 rows x 8 columns]"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"beers"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Inspect the table above. The first column is a numbering scheme for the beers. The other columns contain the following data:\n",
"\n",
"- `abv`: Alcohol-by-volume of the beer.\n",
"- `ibu`: International Bittering Units of the beer.\n",
"- `id`: Unique identifier of the beer.\n",
"- `name`: Name of the beer.\n",
"- `style`: Style of the beer.\n",
"- `brewery_id`: Unique identifier of the brewery.\n",
"- `ounces`: Ounces of beer in the can."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 2: Explore the data\n",
"\n",
"In the field of statistics, [Exploratory Data Analysis](https://en.wikipedia.org/wiki/Exploratory_data_analysis) (EDA) has the goal of summarizing the main features of our data, and seeing what the data can tell us without formal modeling or hypothesis-testing. [2]\n",
"\n",
"Let's start by extracting the columns with the `abv` and `ibu` values, and converting them to numpy arrays. One of the advantages of data frames in `pandas` is that we can access a column simply using its header, like this:\n",
"\n",
"```python\n",
"data_frame['name_of_column']\n",
"```\n",
"\n",
"The output of this action is a `pandas Series`. From the documentation: \"a `Series` is a 1-dimensional labeled array capable of holding any data type.\" [4]\n",
"\n",
"Check the type of a column extracted by header:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"pandas.core.series.Series"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"type(beers['abv'])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Of course, you can index and slice a data series like you know how to do with strings, lists and arrays. Here, we display the first ten elements of the `abv` series:"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0 0.050\n",
"1 0.066\n",
"2 0.071\n",
"3 0.090\n",
"4 0.075\n",
"5 0.077\n",
"6 0.045\n",
"7 0.065\n",
"8 0.055\n",
"9 0.086\n",
"Name: abv, dtype: float64"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"beers['abv'][:10]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Inspect the data in the table again: you'll notice that there are `NaN` (not-a-number) elements in both the `abv` and `ibu` columns. Those values mean that there was no data reported for that beer. A typical task when cleaning up data is to deal with these pesky `NaN`s.\n",
"\n",
"Let's extract the two series corresponding to the `abv` and `ibu` columns, clean the data by removing all `NaN` values, and then access the values of each series and assign them to a numpy array. "
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"abv_series = beers['abv']"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"2407"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"len(abv_series)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Another advantage of `pandas` is that it has the ability to handle missing data. The data-frame method `dropna()` returns a new data frame with only the good values of the original: all the null values are thrown out. This is super useful!"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [],
"source": [
"abv_clean = abv_series.dropna()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Check out the length of the cleaned-up `abv` data; you'll see that it's shorter than the original. `NaN`s gone!"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"2348"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"len(abv_clean)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Remember that a a `pandas` _Series_ consists of a column of values, and their labels. You can extract the values via the [`series.values`](https://pandas.pydata.org/pandas-docs/stable/generated/pandas.Series.values.html) attribute, which returns a `numpy.ndarray` (multidimensional array). In the case of the `abv_clean` series, you get a one-dimensional array. We save it into the variable name `abv`. "
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"abv = abv_clean.values"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[0.05 0.066 0.071 ... 0.055 0.055 0.052]\n"
]
}
],
"source": [
"print(abv)"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"numpy.ndarray"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"type(abv)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now we repeat the whole process for the `ibu` column: extract the column into a series, clean it up removing `NaN`s, extract the series values as an array, check how many values we lost."
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"2407"
]
},
"execution_count": 15,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"ibu_series = beers['ibu']\n",
"\n",
"len(ibu_series)"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"1405"
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"ibu_clean = ibu_series.dropna()\n",
"\n",
"ibu = ibu_clean.values\n",
"\n",
"len(ibu)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##### Exercise\n",
"\n",
"Write a Python function that calculates the percentage of missing values for a certain data series. Use the function to calculate the percentage of missing values for the `abv` and `ibu` data sets. \n",
"\n",
"For the original series, before cleaning, remember that you can access the values with `series.values` (e.g., `abv_series.values`)."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##### Important:\n",
"\n",
"Notice that in the case of the variable `ibu` we are missing almost 42% of the values. This is important, because it will affect our analysis. When we do descriptive statistics, we will ignore these missing values, and having 42% missing will very likely cause bias."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 3: Ready, stats, go!\n",
"\n",
"\n",
"Now that we have numpy arrays with clean data, let's see how we can process them to get some useful information. \n",
"\n",
"Focusing on the numerical variables `abv` and `ibu`, we'll walk through some \"descriptive statistics,\" below. In other words, we aim to generate statistics that summarize the data concisely."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Maximum and minimum \n",
"\n",
"The maximum and minimum values of a dataset are helpful as they tell us the _range_ of our sample: the range gives some indication of the _variability_ in the data.\n",
"We can obtain them for our `abv` and `ibu` arrays with the `min()` and `max()` functions from numpy."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"**abv**"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [],
"source": [
"abv_min = np.min(abv)\n",
"abv_max = np.max(abv)"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The minimum value for abv is: 0.001\n",
"The maximum value for abv is: 0.128\n"
]
}
],
"source": [
"print('The minimum value for abv is: ', abv_min)\n",
"print('The maximum value for abv is: ', abv_max)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"**ibu**"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [],
"source": [
"ibu_min = np.min(ibu)\n",
"ibu_max = np.max(ibu)"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The minimum value for ibu is: 4.0\n",
"The maximum value for ibu is: 138.0\n"
]
}
],
"source": [
"print('The minimum value for ibu is: ', ibu_min)\n",
"print('The maximum value for ibu is: ', ibu_max)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Mean value\n",
"\n",
"The **mean** value is one of the main measures to describe the central tendency of the data: an indication of where's the \"center\" of the data. If we have a sample of $N$ values, $x_i$, the mean, $\\bar{x}$, is calculated by:\n",
"\n",
"\\begin{equation*}\n",
" \\bar{x} = \\frac{1}{N}\\sum_{i} x_i\n",
"\\end{equation*}\n",
"\n",
"In words, that is the sum of the data values divided by the number of values, $N$. \n",
"\n",
"You've already learned how to write a function to compute the mean in [Module 1 Lesson 5](http://go.gwu.edu/engcomp1lesson5), but you also learned that numpy has a built-in `mean()` function. We'll use this to get the mean of the `abv` and `ibu` values."
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {},
"outputs": [],
"source": [
"abv_mean = np.mean(abv)\n",
"ibu_mean = np.mean(ibu)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Next, we'll print these two variables, but we'll use some fancy new way of printing with Python's string formatter, `string.format()`. There's a sweet site dedicated to Python's string formatter, called [PyFormat](https://pyformat.info), where you can learn lots of tricks!\n",
"\n",
"The basic trick is to use curly brackets `{}` as placeholder for a variable value that you want to print in the middle of a string (say, a sentence that explains what you are printing), and to pass the variable name as argument to `.format()`, preceded by the string.\n",
"\n",
"Let's try something out…"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The mean value for abv is 0.059773424190800686 and for ibu 42.71316725978647\n"
]
}
],
"source": [
"print('The mean value for abv is {} and for ibu {}'.format(abv_mean, ibu_mean))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Ugh! That doesn't look very good, does it? Here's where Python's string formatting gets fancy. We can print fewer decimal digits, so the sentence is more readable. For example, if we want to have four decimal digits, we specify it this way:"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The mean value for abv is 0.0598 and for ibu 42.7132\n"
]
}
],
"source": [
"print('The mean value for abv is {:.4f} and for ibu {:.4f}'.format(abv_mean, ibu_mean))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Inside the curly brackets—the placeholders for the values we want to print—the `f` is for `float` and the `.4` is for four digits after the decimal dot. The colon here marks the beginning of the format specification (as there are options that can be passed before). There are so many tricks to Python's string formatter that you'll usually look up just what you need.\n",
"Another useful resource for string formatting is the [Python String Format Cookbook](https://mkaz.blog/code/python-string-format-cookbook/). Check it out!"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Variance and standard deviation\n",
"\n",
"While the mean indicates where's the center of your data, the **variance** and **standard deviation** describe the *spread* or variability of the data. We already mentioned that the _range_ (difference between largest and smallest data values) is also an indication of variability. But the standard deviation is the most common measure of variability.\n",
"\n",
"We really like the way [Prof. Kristin Sainani](https://profiles.stanford.edu/kristin-sainani), of Stanford University, presents this in her online course on [Statistics in Medicine](https://lagunita.stanford.edu/courses/Medicine/MedStats-SP/SelfPaced/about). In her lecture \"Describing Quantitative Data: What is the variability in the data?\", available [on YouTube](https://youtu.be/hlFeEQF5tDc), she asks: _What if someone were to ask you to devise a statistic that gives the avarage distance from the mean?_ Think about this a little bit.\n",
"\n",
"The distance from the mean, for any data value, is $x_i - \\bar{x}$. So what is the average of the distances from the mean? If we try to simply compute the average of all the values $x_i - \\bar{x}$, some of which are negative, you'll just get zero! It doesn't work.\n",
"\n",
"Since the problem is the negative distances from the mean, you might suggest using absolute values. But this is just mathematically inconvenient. Another way to get rid of negative values is to take the squares. And that's how we get to the expression for the _variance_: it is the average of the squares of the deviations from the mean. For a set of $N$ values,\n",
"\n",
"\\begin{equation*}\n",
" \\text{var} = \\frac{1}{N}\\sum_{i} (x_i - \\bar{x})^2\n",
"\\end{equation*}\n",
"\n",
"\n",
"The variance itself is hard to interpret. The problem with it is that the units are strange (they are the square of the original units). The **standard deviation**, the square root of the variance, is more meaningful because it has the same units as the original variable. Often, the symbol $\\sigma$ is used for it:\n",
"\n",
"\\begin{equation*} \n",
" \\sigma = \\sqrt{\\text{var}} = \\sqrt{\\frac{1}{N}\\sum_{i} (x_i - \\bar{x})^2}\n",
"\\end{equation*}"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Sample vs. population\n",
"\n",
"The above definitions are used when $N$ (the number of values) represents the entire population. But if we have a _sample_ of that population, the formulas have to be adjusted: instead of dividing by $N$ we divide by $N-1$. This is important, especially when we work with real data since usually we have samples of populations. \n",
"\n",
"The **standard deviation** of a sample is denoted by $s$, and the formula is:\n",
"\n",
"\\begin{equation*} \n",
" s = \\sqrt{\\frac{1}{N-1}\\sum_{i} (x_i - \\bar{x})^2}\n",
"\\end{equation*}\n",
"\n",
"Why? This gets a little technical, but the reason is that if you have a _sample_ of the population, you don't know the _real_ value of the mean, and $\\bar{x}$ is actually an _estimate_ of the mean. That's why you'll often find the symbol $\\mu$ used to denote the population mean, and distinguish it with the sample mean, $\\bar{x}$. Using $\\bar{x}$ to compute the standard deviation introduces a small bias: $\\bar{x}$ is computed _from the sample values_, and the data are on average (slightly) closer to $\\bar{x}$ than the population is to $\\mu$. Dividing by $N-1$ instead of $N$ corrects this bias!\n",
"\n",
"Prof. Sainani explains it by saying that we lost one degree of freedom when we estimated the mean using $\\bar{x}$. For example, say we have 100 people and I give you their mean age, and the actual age for 99 people from the sample: you'll be able to calculate the age of that 100th person. Once we calculated the mean, we only have 99 degrees of freedom left because that 100th person's age is fixed. \n",
"\n",
"Below is a graphical distinction between the _sample_ and the _population_ from [@allison_horst on twitter](https://twitter.com/allison_horst)\n",
"\n",
"![Sample vs Population from @allison_horst](https://pbs.twimg.com/media/EOM8s3fVUAAglHu?format=jpg&name=small)\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Let's code!\n",
"\n",
"Now that we have the math sorted out, we can program functions to compute the variance and the standard deviation. In our case, we are working with samples of the population of craft beers, so we need to use the formulas with $N-1$ in the denominator. "
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [],
"source": [
"def sample_var(array):\n",
" \"\"\" Calculates the variance of an array that contains values of a sample of a \n",
" population. \n",
" \n",
" Arguments\n",
" ---------\n",
" array : array, contains sample of values. \n",
" \n",
" Returns\n",
" -------\n",
" var : float, variance of the array .\n",
" \"\"\"\n",
" \n",
" sum_sqr = 0 \n",
" mean = np.mean(array)\n",
" \n",
" for element in array:\n",
" sum_sqr += (element - mean)**2\n",
" \n",
" N = len(array)\n",
" var = sum_sqr / (N - 1)\n",
" \n",
" return var\n",
" "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Notice that we used `np.mean()` in our function: do you think we can make this function even more Pythonic? \n",
"\n",
"*Hint:* Yes!, we totally can.\n",
"\n",
"##### Exercise:\n",
"\n",
"Re-write the function `sample_var()` using `np.sum()` to replace the `for`-loop. Name the function `var_pythonic`."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We have the sample variance, so we take its square root to get the standard deviation. We can make it a function, even though it's just one line of Python, to make our code more readable:"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [],
"source": [
"def sample_std(array):\n",
" \"\"\" Computes the standard deviation of an array that contains values\n",
" of a sample of a population.\n",
" \n",
" Arguments\n",
" ---------\n",
" array : array, contains sample of values. \n",
" \n",
" Returns\n",
" -------\n",
" std : float, standard deviation of the array.\n",
" \"\"\"\n",
" \n",
" std = np.sqrt(sample_var(array))\n",
" \n",
" return std"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's call our brand new functions and assign the output values to new variables:"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {},
"outputs": [],
"source": [
"abv_std = sample_std(abv)\n",
"ibu_std = sample_std(ibu)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"If we print these values using the string formatter, only printing 4 decimal digits, we can display our descriptive statistics in a pleasant, human-readable way."
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The standard deviation for abv is 0.0135 and for ibu 25.9541\n"
]
}
],
"source": [
"print('The standard deviation for abv is {:.4f} and for ibu {:.4f}'.format(abv_std, ibu_std))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"These numbers tell us that the `abv` values are quite concentrated around the mean value, while the `ibu` values are quite spread out from their mean. How could we check these descriptions of the data? A good way of doing so is using graphics: various types of plots can tell us things about the data. \n",
"\n",
"We'll learn about _histograms_ in this lesson, and in the following lesson we'll explore _box plots_. "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 4: Distribution plots \n",
"\n",
"Every time that we work with data, visualizing it is very useful. Visualizations give us a better idea of how our data behaves. One way of visualizing data is with a frequency-distribution plot known as **histogram**: a graphical representation of how the data is distributed. To make a histogram, first we need to \"bin\" the range of values (divide the range into intervals) and then we count how many data values fall into each interval. The intervals are usually consecutive (not always), of equal size and non-overlapping. \n",
"\n",
"Thanks to Python and Matplotlib, making histograms is easy. We recommend that you always read the documentation, in this case about [histograms](https://matplotlib.org/devdocs/api/_as_gen/matplotlib.pyplot.hist.html). We'll show you here an example using the `hist()` function from `pyplot`, but this is just a starting point. \n",
"\n",
"Let's first load the **Matplotlib** module called `pyplot`, for making 2D plots. Remember that to get the plots inside the notebook, we use a special \"magic\" command, `%matplotlib inline`:"
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {},
"outputs": [],
"source": [
"from matplotlib import pyplot\n",
"%matplotlib inline\n",
"\n",
"#Import rcParams to set font styles\n",
"from matplotlib import rcParams"
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(array([ 1., 0., 38., 699., 857., 486., 159., 104., 1., 3.]),\n",
" array([0.001 , 0.0137, 0.0264, 0.0391, 0.0518, 0.0645, 0.0772, 0.0899,\n",
" 0.1026, 0.1153, 0.128 ]),\n",
" <a list of 10 Patch objects>)"
]
},
"execution_count": 29,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/png": "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\n",
"text/plain": [
"<Figure size 432x288 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"pyplot.hist(abv)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now we have a line plot, but if you see this plot without any information you would not be able to figure out what kind of data it is! We need labels on the axes, a title and why not a better color, font and size of the ticks. \n",
"**Publication quality** plots should always be your standard for plotting. \n",
"How you present your data will allow others (and probably you in the future) to better understand your work. \n",
"\n",
"We can customize the style of our plots using parameters for the lines, text, font and other plot options. We set some style options that apply for all the plots in the current session with [`plt.rc()`](https://matplotlib.org/api/_as_gen/matplotlib.plt.rc.html)\n",
"Here, we'll make the font of a specific type and size (sans-serif and 18 points). You can also customize other parameters like line width, color, and so on (check out the documentation)."
]
},
{
"cell_type": "code",
"execution_count": 30,
"metadata": {},
"outputs": [],
"source": [
"#Set font style and size \n",
"rcParams['font.family'] = 'sans'\n",
"rcParams['lines.linewidth'] = 3\n",
"rcParams['font.size'] = 18"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We'll redo the same plot, but now we'll add a few things to make it prettier and **publication quality**. We'll add a title, label the axes and, show a background grid. Study the commands below and look at the result!"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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\n",
"text/plain": [
"<Figure size 720x360 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"#You can set the size of the figure by doing:\n",
"pyplot.figure(figsize=(10,5))\n",
"\n",
"#Plotting\n",
"pyplot.hist(abv, bins=20, color='b', histtype='bar', edgecolor='white') \n",
"#The \\n is to leave a blank line between the title and the plot\n",
"pyplot.title('abv \\n')\n",
"pyplot.xlabel('Alcohol by Volume (abv) ')\n",
"pyplot.ylabel('Frequency');"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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\n",
"text/plain": [
"<Figure size 720x360 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"#You can set the size of the figure by doing:\n",
"pyplot.figure(figsize=(10,5))\n",
"\n",
"#Plotting\n",
"pyplot.hist(ibu, bins=20, color=(0.9, 0.5, 0, 0.9), histtype='bar', edgecolor='white') \n",
"#The \\n is to leave a blanck line between the title and the plot\n",
"pyplot.title('ibu \\n')\n",
"pyplot.xlabel('International Bittering Units (ibu)')\n",
"pyplot.ylabel('Frequency');"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"In the previous two plots we set the colors in two ways:\n",
"\n",
"1. A string 'b', which specifies blue. We could also choose from: a string representation \n",
"one of \n",
"\n",
" {'b', 'g', 'r', 'c', 'm', 'y', 'k', 'w'} = \n",
" {**b**lue, **g**reen, **r**ed, **c**yan, **m**agenta, **y**ellow, blac**k**, **w**hite}\n",
" \n",
"2. A RGB or RGBA (red, green, blue, alpha) tuple of float values in [0, 1] (e.g., (0.1, 0.2, 0.5) or (0.1, 0.2, 0.5, 0.3));\n",
"\n",
"Check out the other formatting options use can use in [Matplotlib colors](https://matplotlib.org/3.1.1/tutorials/colors/colors.html) and [Matplotlib hist command](https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.hist.html?highlight=hist#matplotlib.pyplot.hist)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Exploratory exercise:\n",
"\n",
"Play around with the plots, change the values of the bins, colors, etc."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Comparing with a normal distribution\n",
"\n",
"A **normal** (or Gaussian) distribution is a special type of distrubution that behaves as shown in the figure: 68% of the values are within one standard deviation $\\sigma$ from the mean; 95% lie within $2\\sigma$; and at a distance of $\\pm3\\sigma$ from the mean, we cover 99.7% of the values. This fact is known as the $3$-$\\sigma$ rule, or 68-95-99.7 (empirical) rule.\n",
"\n",
"<img src=\"../images/std_bell_curve.png\" style=\"width: 800px;\"/> \n",
"\n",
"#### Standard deviation and coverage in a normal distribution. Modified figure based on original from [Wikimedia Commons](https://commons.wikimedia.org/wiki/File:Standard_deviation_diagram.svg), the free media repository.\n",
"\n",
"\n",
"Notice that our histograms don't follow the shape of a normal distribution, known as *Bell Curve*. Our histograms are not centered in the mean value, and they are not symetric with respect to it. They are what we call **skewed** to the right (yes, to the _right_). A right (or positive) skewed distribution looks like it's been pushed to the left: the right tail is longer and most of the values are concentrated on the left of the figure. Imagine that \"right-skewed\" means that a force from the right pushes on the curve."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Discussion point\n",
"\n",
"* How do you think that skewness will affect the percentages of coverage by standard deviation compared to the Bell Curve?\n",
"\n",
"* Can we calculate those percentages? \n",
"\n",
"## Exercise\n",
"\n",
"We can calculate skewness and standard deviation in a few lines of Python. But before doing that, we want you to explain in your own words how the following piece of code works. \n",
"\n",
"*Hints:* \n",
"\n",
"1. Check what the logical operation `np.logical_and(1<x, x<4)` returns.\n",
"2. Check what happens if you sum booleans. For example, `True + True`, `True + False` and so on.\n"
]
},
{
"cell_type": "code",
"execution_count": 33,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"2\n"
]
}
],
"source": [
"x = np.array([1,2,3,4])\n",
"num_ele = np.logical_and(1<x, x<4).sum()\n",
"print(num_ele)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now, using the same idea, we will calculate the number of elements in each interval of width $(1\\sigma, 2\\sigma, 3\\sigma)$, and get the corresponding percentage. \n",
"\n",
"Since we want to compute this for both of our variables, `abv` and `ibu`, we'll write a function to do so. Study carefully the code below. Better yet, explain it to your neighbor."
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {},
"outputs": [],
"source": [
"def std_percentages(x, x_mean, x_std):\n",
" \"\"\" Computes the percentage of coverage at 1std, 2std and 3std from the\n",
" mean value of a certain variable x.\n",
" \n",
" Arguments\n",
" ---------\n",
" x : array, data we want to compute on. \n",
" x_mean : float, mean value of x array.\n",
" x_std : float, standard deviation of x array.\n",
" \n",
" Returns\n",
" -------\n",
" \n",
" per_std_1 : float, percentage of values within 1 standard deviation.\n",
" per_std_2 : float, percentage of values within 2 standard deviations.\n",
" per_std_3 : float, percentage of values within 3 standard deviations. \n",
" \"\"\"\n",
" \n",
" std_1 = x_std\n",
" std_2 = 2 * x_std\n",
" std_3 = 3 * x_std\n",
" \n",
" elem_std_1 = np.logical_and((x_mean - std_1) < x, x < (x_mean + std_1)).sum()\n",
" per_std_1 = elem_std_1 * 100 / len(x) \n",
" \n",
" elem_std_2 = np.logical_and((x_mean - std_2) < x, x < (x_mean + std_2)).sum()\n",
" per_std_2 = elem_std_2 * 100 / len(x) \n",
" \n",
" elem_std_3 = np.logical_and((x_mean - std_3) < x, x < (x_mean + std_3)).sum()\n",
" per_std_3 = elem_std_3 * 100 / len(x) \n",
" \n",
" return per_std_1, per_std_2, per_std_3\n",
" "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's compute the percentages next. Notice that the function above returns three values. If we want to assign each value to a different variable, we need to follow a specific syntax. In our example this would be:"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"**abv**"
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {},
"outputs": [],
"source": [
"abv_std1_per, abv_std2_per, abv_std3_per = std_percentages(abv, abv_mean, abv_std)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's pretty-print the values of our variables so we can inspect them:"
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The percentage of coverage at 1 std of the abv_mean is : 74.06 %\n",
"The percentage of coverage at 2 std of the abv_mean is : 94.34 %\n",
"The percentage of coverage at 3 std of the abv_mean is : 99.79 %\n"
]
}
],
"source": [
"print('The percentage of coverage at 1 std of the abv_mean is : {:.2f} %'.format(abv_std1_per))\n",
"print('The percentage of coverage at 2 std of the abv_mean is : {:.2f} %'.format(abv_std2_per))\n",
"print('The percentage of coverage at 3 std of the abv_mean is : {:.2f} %'.format(abv_std3_per))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"**ibu**"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {},
"outputs": [],
"source": [
"ibu_std1_per, ibu_std2_per, ibu_std3_per = std_percentages(ibu, ibu_mean, ibu_std)"
]
},
{
"cell_type": "code",
"execution_count": 38,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The percentage of coverage at 1 std of the ibu_mean is : 68.11 %\n",
"The percentage of coverage at 2 std of the ibu_mean is : 95.66 %\n",
"The percentage of coverage at 3 std of the ibu_mean is : 99.72 %\n"
]
}
],
"source": [
"print('The percentage of coverage at 1 std of the ibu_mean is : {:.2f} %'.format(ibu_std1_per))\n",
"print('The percentage of coverage at 2 std of the ibu_mean is : {:.2f} %'.format(ibu_std2_per))\n",
"print('The percentage of coverage at 3 std of the ibu_mean is : {:.2f} %'.format(ibu_std3_per))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Notice that in both cases the percentages are not that far from the values for normal distribution (68%, 95%, 99.7%), especially for $2\\sigma$ and $3\\sigma$. So usually you can use these values as a rule of thumb. "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## What we've learned\n",
"\n",
"* Read data from a `csv` file using `pandas`.\n",
"* The concepts of Data Frame and Series in `pandas`.\n",
"* Clean null (NaN) values from a Series using `pandas`.\n",
"* Convert a `panda`s Series into a `numpy` array.\n",
"* Compute maximum and minimum, and range.\n",
"* Revise concept of mean value.\n",
"* Compute the variance and standard deviation.\n",
"* Use the mean and standard deviation to understand how the data is distributed.\n",
"* Plot frequency distribution diagrams (histograms).\n",
"* Normal distribution and 3-sigma rule.\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## References\n",
"\n",
"1. [Craft beer datatset](https://github.com/nickhould/craft-beers-dataset) by Jean-Nicholas Hould.\n",
"2. [Exploratory Data Analysis](https://en.wikipedia.org/wiki/Exploratory_data_analysis), Wikipedia article.\n",
"3. _Think Python: How to Think Like a Computer Scientist_ (2012). Allen Downey. Green Tea Press. [PDF available](http://greenteapress.com/thinkpython/thinkpython.pdf)\n",
"4. [Intro to data Structures](https://pandas.pydata.org/pandas-docs/stable/dsintro.html), `pandas` documentation.\n",
"5. _Think Stats: Probability and Statistics for Programmers_ version 1.6.0 (2011). Allen Downey. Green Tea Press. [PDF available](http://greenteapress.com/thinkstats/thinkstats.pdf)\n",
"\n",
"### Recommended viewing\n",
"\n",
"From [\"Statistics in Medicine,\"](https://lagunita.stanford.edu/courses/Medicine/MedStats-SP/SelfPaced/about), a free course in Stanford Online by Prof. Kristin Sainani, we highly recommend that you watch these three lectures: \n",
"* [Describing Quantitative Data: Where is the center?](https://youtu.be/tQ5slNYRcC4)\n",
"* [Describing Quantitative Data: What is the variability in the data?](https://youtu.be/hlFeEQF5tDc)\n",
"* [Variability in the data, continued: examples, bell curve](https://youtu.be/qeG0uNI3DBQ)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.5"
},
"widgets": {
"state": {},
"version": "1.1.2"
}
},
"nbformat": 4,
"nbformat_minor": 4
}