{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Jupyter Notebooks for Teaching and Learning
\n", " C. Hardebolle, P. Jermann, R. Tormey, CC BY-NC-SA 4.0 Int.
\n", "
\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "

Introduction to hypothesis testing

\n", "\n", "An important part of the scientific process is to make hypotheses about the world or about the results of experiments. These hypotheses need then to be checked by collecting evidence and making comparisons. Hypothesis testing is a step in this process where statistical tools are used to test hypotheses using data.\n", "\n", "**This notebook is designed for you to learn**:\n", "* How to distinguish between \"population\" datasets and \"sample\" datasets when dealing with experimental data\n", "* How to compare a sample to a population, test a hypothesis using a statistical test called the \"t-test\" and interpret its results\n", "* How to use Python scripts to make statistical analyses on a dataset\n", "\n", "In the following, we will use an example dataset representing series of measurements on a type of flower called Iris." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "---" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Introduction\n", "\n", "
\n", " \"iris\n", "\n", "###### Iris Virginica (Credit: Frank Mayfield CC BY-SA 2.0)\n", "\n", "
\n", "\n", "In 1935, an american botanist called Edgar Anderson worked on quantifying the morphologic variation of Iris flowers of three related species, Iris Setosa, Iris Virginica and Iris Versicolor [[1]](#Bibliography). He realized a series of measures of the petal length, petal width, sepal length, sepal width and species.\n", "Based on the combination of these four features, a British statistician and biologist named Ronald Fisher developed a model to distinguish the species from each other [[2]](#Bibliography).\n", "\n", "## Question\n", "\n", "A recent series of measurements has been carried out at the [Iris Garden of the Vullierens Castle](https://chateauvullierens.ch/en/) near Lausanne, on a sample of 50 flowers of the Iris Virginica species. \n", "**How similar (or different) is the Iris sample from the Vullierens Castle compared to the Iris Virginica population documented by Edgar Anderson?**\n", "\n", "## Instructions\n", "\n", "This notebook will guide you in the use of Python tools for analyzing this experimental dataset and perform statistical tests which are widely used in hypothesis testing. \n", "It includes:\n", "* **explanations to read** about how to analyze experimental data to answer a research question,\n", "* **code to execute** to illustrate how to perform data analysis using Python.\n", "* **questions** to help you think about what you learn along the way.\n", "\n", "\n", "**Solutions** of all the questions are available [in this file](./solution/StatisticsNotebook-solution.ipynb), we recommend you to **check your answer** after each question, before moving to the next piece of content." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " How to use this notebook?
\n", " \n", "
\n", "
\n", "\n", "While using the notebook, you can also **take notes on a piece of paper** if you feel this is helpful.\n", "\n", " \n", "\n", "\n", "--- " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Getting started" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Python tools for stats\n", "Python comes with a number of libraries for processing data and computing statistics.\n", "To use these tool you first have to load them using the `import` keyword. \n", "The role of the code cell just below is to load the tools that we use in the rest of the notebook. It is important to execute this cell *prior to executing any other cell in the notebook*." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "# plotting and display tools\n", "%matplotlib inline\n", "import matplotlib.pyplot as plt\n", "plt.style.use('seaborn-whitegrid') # global style for plotting\n", "\n", "from IPython.display import display, set_matplotlib_formats\n", "set_matplotlib_formats('svg') # vector format for graphs\n", "\n", "# data computation tools\n", "import numpy as np \n", "import pandas as pan\n", "import math\n", "\n", "# statistics tools\n", "import scipy.stats as stats\n", "from lib.dataanalysis import * " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Data available on the Anderson population\n", "\n", "Anderson has published summary statistics of his dataset. \n", "You have the **mean petal length of the Iris Virginica species** documented by Anderson: $\\mu = 5.552$ cm, which we define in the code below." ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "5.552" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Define mu as mean petal length of Iris Virginica species from Anderson\n", "mu = 5.552\n", "\n", "# Display mu\n", "mu" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Question
\n", " What does the first line of code above do? And what is the role of the second line of code?
\n", " How would you do to define another value in the code, for instance the mean petal length of Iris Versicolor $\\mu_{versicolor}= 4.26$ cm?
\n", " Type your code using the cell below and execute it to test the result. \n", "

You can check your answer by clicking on the \"...\" below.

\n", "
" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "# Define mu_versicolor here\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "
\n", " Solution
\n", " The first line of code defines a variable called mu and sets its value to 5.552.
\n", " The role of the second line of code is to display the value of mu
\n", " Based on the same model, below is the code to define mu_versicolor with a value of 4.26 and display it. \n", "
" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "jupyter": { "source_hidden": true } }, "outputs": [ { "data": { "text/plain": [ "4.26" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Define mu_versicolor here\n", "mu_versicolor = 4.26\n", "\n", "# Display beta\n", "mu_versicolor" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Data available on the Vullierens sample\n", "\n", "You have the raw data collected on the petal length and petal width of the Vullierens sample, which is stored in the file `iris-sample-vullierens.csv` that you can see in the file explorer in the left pane. \n", "If you double click on the file it will open in a new tab and you can look at what is inside.\n", "\n", "Now to analyze the data using Python you have to read the file:" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
petal_lengthpetal_width
05.0909811.787443
15.2244312.259538
27.2516202.055940
35.6079322.311074
46.1188011.997534
\n", "
" ], "text/plain": [ " petal_length petal_width\n", "0 5.090981 1.787443\n", "1 5.224431 2.259538\n", "2 7.251620 2.055940\n", "3 5.607932 2.311074\n", "4 6.118801 1.997534" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Read the Vullierens sample data from the CSV file\n", "sample_data = pan.read_csv('iris-sample-vullierens.csv')\n", "\n", "# Display the first few lines of the dataset\n", "sample_data.head()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "After reading the file, its content is stored in the variable `sample_data`, which is a kind of table. The output above shows us an extract of the table, limited to the first 5 lines. We see above that each line of the table is given an index number to identify it. We also see that, appart from the index, the table contains two columns, called `\"petal_length\"` and `\"petal_width\"`, which contains all the measurements made on the Vullierens Irises.\n", "\n", "To get the complete list of all the values stored in one specific column such as `\"petal_length\"`, you can use the following syntax: `sample_data[\"petal_length\"]`." ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0 5.090981\n", "1 5.224431\n", "2 7.251620\n", "3 5.607932\n", "4 6.118801\n", "5 6.352507\n", "6 4.896926\n", "7 5.220964\n", "8 6.235352\n", "9 6.200244\n", "10 5.422812\n", "11 5.296983\n", "12 4.694441\n", "13 5.911687\n", "14 5.958683\n", "15 5.764169\n", "16 6.035653\n", "17 6.848299\n", "18 6.286982\n", "19 5.117292\n", "20 4.918408\n", "21 5.663514\n", "22 6.056574\n", "23 6.075641\n", "24 5.619982\n", "25 6.091000\n", "26 5.621478\n", "27 5.207927\n", "28 5.410302\n", "29 5.714093\n", "30 5.601681\n", "31 5.706329\n", "32 5.536061\n", "33 5.742188\n", "34 5.496693\n", "35 5.520262\n", "36 4.736357\n", "37 5.445666\n", "38 5.818557\n", "39 6.115245\n", "40 6.010444\n", "41 5.692231\n", "42 5.477746\n", "43 5.620406\n", "44 5.936960\n", "45 6.194876\n", "46 6.349760\n", "47 4.781601\n", "48 5.692977\n", "49 6.260550\n", "Name: petal_length, dtype: float64" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# All values stored in the \"petal_length\" column of the \"sample_data\" table\n", "sample_data[\"petal_length\"]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Question
\n", " How would you access the data stored in the other column of this table, named \"petal_width\"?
\n", " Type and test your code using the cell below.\n", "

You can check your answer by clicking on the \"...\" below.

\n", "
" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "# Access the values stored in the \"petal_width\" column of the \"sample_data\" table\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "
\n", " Solution
\n", " Below is the code to access the data stored in the \"petal_width\" column of the table: we simply change the name of the column we want to access. \n", "
" ] }, { "cell_type": "code", "execution_count": 10, "metadata": { "jupyter": { "source_hidden": true } }, "outputs": [ { "data": { "text/plain": [ "0 1.787443\n", "1 2.259538\n", "2 2.055940\n", "3 2.311074\n", "4 1.997534\n", "5 2.086726\n", "6 2.173142\n", "7 2.633884\n", "8 1.991561\n", "9 2.046800\n", "10 2.241896\n", "11 1.792723\n", "12 1.664687\n", "13 2.337676\n", "14 2.060855\n", "15 2.323527\n", "16 1.792844\n", "17 1.704919\n", "18 2.105049\n", "19 1.822861\n", "20 2.160682\n", "21 1.870989\n", "22 1.932335\n", "23 2.265946\n", "24 2.180749\n", "25 1.613862\n", "26 2.010236\n", "27 2.251614\n", "28 2.079616\n", "29 2.264294\n", "30 1.624387\n", "31 2.113045\n", "32 2.461176\n", "33 2.025708\n", "34 2.001345\n", "35 1.716347\n", "36 1.731154\n", "37 1.897109\n", "38 2.023749\n", "39 2.093593\n", "40 1.494173\n", "41 2.264155\n", "42 1.936023\n", "43 1.779750\n", "44 2.212744\n", "45 2.294535\n", "46 2.147301\n", "47 1.484636\n", "48 1.961032\n", "49 1.979474\n", "Name: petal_width, dtype: float64" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Access the values stored in the \"petal_width\" column of the \"sample_data\" table\n", "sample_data[\"petal_width\"]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ " \n", "\n", "---" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# First look at the data" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Descriptive statistics\n", "\n", "A first important step in analyzing data is to get an idea of its basic characteristics using **descriptive statistics** such as the **mean** (i.e. the average value or \"moyenne\" in French) and the **standard deviation** (\"écart-type\" in French, generally abreviated std in English). \n", "So let's compute some simple descriptive statistics on the Vullierens sample data. The `describe()` function gives us right away a number of useful descriptive statistics for all the columns in our data table:" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
petal_lengthpetal_width
count50.00000050.000000
mean5.7130452.021249
std0.5189400.248203
min4.6944411.484636
25%5.4285261.834893
50%5.6926042.036254
75%6.0708742.204745
max7.2516202.633884
\n", "
" ], "text/plain": [ " petal_length petal_width\n", "count 50.000000 50.000000\n", "mean 5.713045 2.021249\n", "std 0.518940 0.248203\n", "min 4.694441 1.484636\n", "25% 5.428526 1.834893\n", "50% 5.692604 2.036254\n", "75% 6.070874 2.204745\n", "max 7.251620 2.633884" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Compute the descriptive stats\n", "sample_stats = sample_data.describe()\n", "\n", "# Display the result\n", "sample_stats" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Question
\n", " From the table above, what is the mean value of the petal length in the Vullierens sample?
\n", " And the standard deviation (std) of the petal length in the Vullierens sample?\n", "

You can check your answer by clicking on the \"...\" below.

\n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "
\n", " Solution
\n", " From the table above, we can read in the first column, second line that the mean value of the petal length of the Vullierens sample is 5.713045 cm.
\n", " We can read in the first column, third line that the standard deviation of the petal length is 0.518940 cm.\n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can access individual elements of the `sample_stats` table using the corresponding names for the line and column of the value. \n", "The following cell illustrates how to get the **sample size** (named `count` in the table above):" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "50.0" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Extract the sample mean from the descriptive stats\n", "sample_size = sample_stats.loc[\"count\",\"petal_length\"]\n", "\n", "# Display the result\n", "sample_size" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Another interesting information to extract from these descriptive statistics is the **mean value of the petal length** in the sample:" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "5.713045387181936" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Extract the sample mean of the petal length from the descriptive stats\n", "sample_mean = sample_stats.loc[\"mean\",\"petal_length\"]\n", "\n", "# Display the result\n", "sample_mean" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Question
\n", " How could you access the value of the standard deviation of the petal length in the sample_stats table?
\n", " Type and test your code using the cell below.\n", "

You can check your answer by clicking on the \"...\" below.

\n", "
" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [], "source": [ "# Extract the sample standard deviation of the petal length from the descriptive stats\n" ] }, { "cell_type": "markdown", "metadata": { "jupyter": { "source_hidden": true } }, "source": [ "\n", "
\n", " Solution
\n", " Below is the code to access the value of the standard deviation of the petal length in the sample_stats table: we use the name of the line containing the value, std, and we store the result in a variable called sample_std.\n", "
" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "jupyter": { "source_hidden": true } }, "outputs": [], "source": [ "# Extract the sample standard deviation of the petal length from the descriptive stats\n", "sample_std = sample_stats.loc[\"std\",\"petal_length\"]\n", "\n", "# Display the result\n", "sample_std" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Visualization\n", "\n", "After having looked at simple descriptive statistics, another important step is to **visualize the data**, to better identify its characteristics. \n", "Histograms are useful to visualize the [frequency distribution](https://en.wikipedia.org/wiki/Frequency_distribution) of the sample values: the horizontal axis displays intervals of the variable we are looking at, in our case the petal length, and the vertical axis indicates the number of samples in each interval." ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "\n" ], "text/plain": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Plot the histogram representing the distribution of the samples\n", "plt.hist(sample_data[\"petal_length\"], color=\"green\")\n", "plt.xticks(np.arange(4.6, 7.2, 0.2))\n", "\n", "# Add a vertical line for the sample mean\n", "plt.axvline(x=sample_mean, color='black', linestyle='-.', linewidth=1, label=\"sample mean $m$\")\n", "\n", "# Add a vertical line for the population mean\n", "plt.axvline(x=mu, color='black', linestyle=':', linewidth=1, label=\"population mean $\\mu$\")\n", "\n", "# Add a legend\n", "plt.legend();" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Question
\n", " From the graph above, how many irises from the Vullierens sample have a petal length between 4.7 and 4.95 cm?
\n", " How is the mean petal length of the Vullierens sample represented? And the mean of the Anderson population?
\n", " How close are they to each other?\n", "

You can check your answer by clicking on the \"...\" below.

\n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "
\n", " Solution
\n", " The irises with a petal length between 4.7 and 4.95 cm are represented by the first bar of the histogram (counting from the left) and we can read on the vertical axis that there are 5 irises represented in this bar.
\n", " According to the legend, the mean petal length of the Vullierens sample is represented by a vertical dash-dotted line (-·-·-) and the mean of the Anderson population by a vertical dotted line (·····).
\n", " These two means seem to be quite close to each other, with a difference of around 0.15 cm.\n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Interpretation and hypothesis\n", "\n", "The simple analyses we have made so far allow us to have a preliminary idea about how the Irises from Vullierens compare to those observed by Anderson. One feature to look at for the comparison is their respective mean petal length. We see above that the mean petal length $m$ of the Vullierens sample is quite close to the mean $\\mu$ reported by Anderson. However, we also see that there is some variability in our sample, meaning that some irises in our sample actually have a petal length quite far from that of the Anderson population. So are the two means really that close to each other?\n", "\n", "Let's formulate this as an **hypothesis** which we state as: the sample mean $m$ is similar to the mean of the reference population $\\mu$, which we will note $m = \\mu$ (in this notation, the equal symbol should not be interpreted literally). This hypothesis is noted $H_0$ and called the \"null\" hypothesis because it states that there is no difference between the sample and the population. \n", "The \"alternate\" hypothesis $H_a$ is that the sample mean is not similar to the mean of the reference population, $m \\neq \\mu$.\n", "\n", "How can we test our hypothesis? In the following, we use a **statistical test** to answer this question.\n", "\n", " \n", "\n", "---\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Testing our hypothesis" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In our hypothesis we compare the mean of one sample to a reference value. To test this hypothesis we can use a statistical test called a **one-sample t-test**. \n", "\n", "But what does it mean when we test the hypothesis that a sample mean is potentially equal to a given value? " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Sample versus population\n", "\n", "
\n", "\n", "Figure 1. Population and samples.\n", "\n", "Figure 2. Distribution of the means of all possible samples coming from a given population (Anderson's population in this case).\n", "
\n", "\n", "To understand this, it is useful to start by thinking about a population, in this case our population of Irises which has a mean petal length of $\\mu = 5.552$ cm, illustrated by the big black circle on Figure 1 on the right.\n", "\n", "Now imagine you take a sample of (i.e. a subset of), say, 50 flowers from this population, represented by the green circle on Figure 1. The mean petal length of this sample is $m_1 = 6.234$ cm. You then take a second sample of 50 flowers (another subset, in blue on Figure 1), which ends up having a mean petal length of $m_2 = 5.874$ cm. You then take a third sample of 50 which gives you a mean petal length of $m_3 = 5.349$ cm, in yellow on Figure 1.\n", "\n", "If you keep taking samples from this population, you will start to notice a pattern: while some of the samples will give a mean petal length which is not at all close to the population mean, most of the mean petal lengths are reasonably close to the population mean of 5.552 cm. Furthermore, the mean of the mean petal length of the samples will be the same as that of the population as a whole i.e. 5.552 cm. \n", "\n", "In fact, if we keep taking samples from this population, it turns out that the distribution of the mean of these samples will take a very particular pattern that looks like a normal curve, as illustrated by Figure 2 on the right. Actually, if you take bigger sample sizes (say 130 instead of 50) the distribution will get closer and closer to being a normal curve for which the mean is equal to the mean of the population. For these smaller samples, the distribution is called the **[Student's t-distribution](https://en.wikipedia.org/wiki/Student%27s_t-distribution)** (actually it is a family of distributions, which depend on the sample size).\n", "\n", "\n", "This is useful because it allows us to rephrase our question as to how similar or different our sample from Vullierens Castle is to the population of Irises as described by Edgar Anderson. \n", "**What we have from the Vullierens Castle is a sample**. We want to know if it is a sample that might have come from a population like that described by Edgar Anderson. We now know the shape (more or less a normal distribution) and the mean (5.552 cm) of all of the samples that could be taken from the population described by Edgar Anderson. **So our question becomes \"where does our sample fall on the distribution of all such sample means?\"**. \n", "If our mean is in position A on the figure on the right, then it is plausible that our sample came from a population like that of Edgar Anderson. If our mean is in position B, then it is less plausible to believe that our sample came from a population like Anderson’s.\n", "\n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Significance level and cutoff point\n", "\n", "
\n", "\n", "Figure 3. Distribution of the means of of all possible samples coming from Anderson's population with zones defined by the significance level $\\alpha=0.05$.
\n", "
\n", "\n", "\n", "You might be wondering, how far away is far enough away for us to think it is implausible that our sample comes from a population like Anderson’s. The answer is, it depends on how sure you want to be. \n", "\n", "One common answer to this question is to be 95% sure - meaning that a sample mean would need to be in the most extreme 5% of cases before we would think it is implausible that our sample comes from a population like Anderson’s. This value of 5% is called **significance level** and it is noted $\\alpha$, with $\\alpha=0.05$. These most extreme 5% cases are represented by the zones in light blue on Figure 3. If the sample mean falls into these most extreme zones, we say that *the difference is \"statistically significant\"*.\n", "\n", "A second, common answer is 99% sure meaning that a sample mean would need to be in the most extreme 1% of cases before we would think it is implausible that our sample comes from a population like Anderson’s ($\\alpha=0.01$). \n", "\n", "In the following, **we will work on the basis of being 95% sure**.
\n", "Let's define our significance level $\\alpha=0.05$:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Define alpha at 0.05\n", "alpha05 = 0.05\n", "\n", "# Display alpha\n", "alpha05" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Question
\n", " In the code cell below, create another variable called alpha01 to define a significance level of $\\alpha = 0.01$.\n", "

You can check your answer by clicking on the \"...\" below.

\n", "
" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Define alpha at 0.01\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "
\n", " Solution
\n", " The cell below defines the variable alpha01 and displays it.\n", "
\n", "\n", "
\n",
    "# Define alpha at 0.01\n",
    "alpha01 = 0.01\n",
    "\n",
    "# Display alpha\n",
    "alpha01\n",
    "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If our distribution of sample means is a normal curve then we know that the most extreme 5% of sample means are found above or below ±1.96 standard deviations above and below the mean. In our case, because our sample size is less than 130 (it is 50), our distribution is close to normal but not quite normal. \n", "In this case, it is possible to find out the relevant cut off point from [looking it up in statistical tables](https://en.wikipedia.org/wiki/Student%27s_t-distribution#Table_of_selected_values): for a sample size of 50, the most extreme 5% of cases are found above or below approximately 2.01 standard deviations from the mean. \n", "\n", "The good news is that **Python gives us automatically the value of the cutoff point** based on the value of the significance level $\\alpha$ chosen and the sample size, thanks to the `stats` library which offers useful functions related to many statistical distributions such as Student's t:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Get the cutoff point for alpha at 0.05\n", "cutoff05 = stats.t.isf(alpha05 / 2, sample_size)\n", "\n", "# Display cutoff\n", "cutoff05" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Question
\n", " How would you get the value of the cutoff point for the significance level $\\alpha = 0.01$?
\n", " Type and test your code using the cell below.\n", "

You can check your answer by clicking on the \"...\" below.

\n", "
" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Get the cutoff point for alpha at 0.01\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "
\n", " Solution
\n", " To get the value of the cutoff point for the significance level of $\\alpha = 0.01$, we can copy the first line of code stats.t.isf(alpha05 / 2, sample_size) and replace alpha05 with the variable alpha01 that we have previously defined.
\n", " To save the value of this new cutoff point for later, it is good to store it in a new variable cutoff01.
\n", " See the solution code below.\n", "
\n", "\n", "
\n",
    "# Get the cutoff point for alpha at 0.01\n",
    "cutoff01 = stats.t.isf(alpha01 / 2, sample_size)\n",
    "\n",
    "# Display cutoff\n",
    "cutoff01\n",
    "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Error in the distribution of means\n", "\n", "So far we know a lot that will help us to test the hypothesis that our sample mean is similar to Anderson’s population mean. We know:\n", "* Our sample mean $m$\n", "* The population mean $\\mu$\n", "* The shape of the distribution of the mean of all samples that would come from this population (a normal curve, centred on the population mean)\n", "* Our cut off point defined by $\\alpha$ (the most extreme 5% of cases, above or below 2.01 standard deviations from the mean)\n", "\n", "The last piece of information missing that would enable us to test this hypothesis is the size of the standard deviation of the distribution of sample means from Anderson’s population. \n", "It turns out that a good guess for the size of this standard deviation can be obtained from knowing the standard deviation of our sample.\n", "If $s$ is the sample standard deviation of our sample and $n$ is the sample size, then the standard deviation of the distribution of sample means is:\n", "\n", "$\n", "\\begin{align}\n", "\\sigma_{\\overline{X}} = \\frac{s}{\\sqrt{n}}\n", "\\end{align}\n", "$ \n", "\n", "This standard deviation of the distribution of sample means is called the **\"standard error of the mean\" (also noted SEM)**. \n", "We can compute it by using the sample size and the standard deviation from the descriptive stats we have computed earlier: " ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Extract the sample standard deviation from the descriptive stats\n", "sample_std = sample_stats.loc[\"std\",\"petal_length\"]\n", "\n", "# Compute the estimation of the standard deviation of sample means from Anderson's population (standard error)\n", "sem = sample_std / math.sqrt(sample_size)\n", "\n", "# Display the standard error\n", "sem" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Question
\n", " In the code above, what function is used to compute the square root of the sample size, $\\sqrt{n}$?
\n", " How would you compute the square root of 2?
\n", " Type and test your code using the cell below.\n", "

You can check your answer by clicking on the \"...\" below.

\n", "
" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Compute the square root of 2 and display the result\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "
\n", " Solution
\n", " We see in the code making the calculation of the standard error of the mean (sem) above that the way to get $\\sqrt{n}$ in Python is math.sqrt(sample_size).
\n", " Therefore we can replace sample_size by 2 to get $\\sqrt{2}$.
\n", " See the solution code below.\n", "
\n", "\n", "
\n",
    "# Compute the square root of 2\n",
    "sqrt2 = math.sqrt(2)\n",
    "\n",
    "# Display the result\n",
    "sqrt2\n",
    "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Comparison, and definition of the *t* statistics\n", "\n", "We can now restate our question in more precise terms: **\"is our sample mean in the most extreme 5% of samples that would be drawn from a population with the same mean as Anderson’s population?\"**. \n", "Or to be even more precise, **\"is the gap between our sample mean and Anderson’s population mean greater than 2.01 times the standard error of the mean?\"**. \n", "\n", "This would be equivalent to compare\n", "$\n", "\\begin{align}\n", "\\frac{m - \\mu}{\\sigma_{\\overline{X}}}\n", "\\end{align}\n", "$\n", "to our cutoff point of 2.01. \n", "\n", "That is the **definition of the *t* statistics**: the value $t = $\n", "$\n", "\\begin{align}\n", "\\frac{m - \\mu}{\\sigma_{\\overline{X}}}\n", "\\end{align}\n", "$ \n", " has to be compared to the cutoff point we have chosen to determine if the sample mean falls into the most extreme zones and to be able to say whether the difference is statistically significant or not.
\n", "Let's compute $t$:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Compute the t statistics:\n", "t = (sample_mean - mu) / sem\n", "\n", "# Display t\n", "t" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now we can compare $t$ to our cutoff point. \n", "\n", "One issue here is that **when $m$ is smaller than $\\mu$, the value of $t$ can be negative**. This is because, just like for the Normal distribution, Student's t-distribution is symmetrical and centred on zero, zero meaning there is no difference between the mean of the sample and the mean of the population. So when comparing $t$ to the cutoff point, either we take its absolute value, which is what we do below, or if $t$ is negative we compare it to the negative value of the cutoff point (i.e. -2.01 for a significance level of 0.05)." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Compare t with our cutoff point\n", "if abs(t) > cutoff05: \n", " print(\"The difference IS statistically significant.\")\n", "else: \n", " print(\"The difference is NOT statistically significant.\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We see in the results above that for our Vullierens sample $|t| < 2.01$, therefore the difference between the two means is not greater than 2.01 times the standard error. In other words, **our sample mean is NOT in the most extremes 5%** of samples that would be drawn from a population with the same mean as Anderson's population. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Question
\n", " How would you compare $|t|$ to the cutoff point corresponding to a significance level of $\\alpha = 0.01$?
\n", " Type and test your code using the cell below.\n", "

You can check your answer by clicking on the \"...\" below.

\n", "
" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Compare t to the cutoff point for alpha=0.01\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "
\n", " Solution
\n", " To compare the absolute value of $t$ to the cutoff point corresponding to $\\alpha = 0.01$, we can simply replace cutoff05 in the code above by the variable cutoff01 we have defined earlier with the appropriate value for the cutoff point. See the solution code below.
\n", " In this case, the comparison would tell us if our sample mean is in the most extremes 1% of samples that would be drawn from a population with the same mean as Anderson's population. Since we already know that our sample mean is NOT in the most extremes 5%, it is no surprise that it is not either in the most extremes 1%. \n", "
\n", "\n", "
\n",
    "# Compare t to the cutoff point for alpha=0.01\n",
    "if abs(t) > cutoff01: \n",
    "    print(\"The difference IS statistically significant.\")\n",
    "else: \n",
    "    print(\"The difference is NOT statistically significant.\")\n",
    "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The statistical test we have just performed here, where we compare our sample mean to the mean of a population, is called a **one-sample t-test**: *one-sample* because we compare a sample to the mean of a population, and *t-test* because the distribution of all the possible sample means of the population follows a distribution called *Student's t-distribution*. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Visualization of *t*\n", "\n", "Using Python we can visualize what the t-test means graphically by plotting the t-distribution of all the possible sample means that would be drawn from a population with the same mean as Anderson's population and showing where `t` is in the distribution compared to the zone defined by our $\\alpha$ of 5%.\n", "\n", "It the *t* statistics falls outside of the rejection zone defined by $\\alpha$, then that means that the difference between our sample mean and the population mean is not statistically significant. If it falls into the rejection zone, then the difference is statistically significant and the sample should not be considered as coming from the Anderson population under the significance level we have chosen.\n", "\n", "The cell below uses an external library to generate a graphical visualization of the result of the t-test." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Visualize graphically the result of the t-test with alpha at 0.05\n", "visualize_ttest(sample_size, alpha05, t)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Question
\n", " What happens to the rejection zone in red on the figure when we choose an $\\alpha$ of 1%?
\n", " Type and test your code using the cell below.\n", "

You can check your answer here.

\n", "
" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Visualize graphically the result of the t-test with alpha at 0.01\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "
\n", " Solution
\n", " To visualize the rejection zone for an $\\alpha$ of 1%, we can simply replace alpha05 in the code above by the variable alpha01 we have defined earlier. See the solution code below.
\n", " By comparing the two visualizations, we see that the rejection zone for $\\alpha=0.01$ is much smaller than for $\\alpha=0.05$, which means we want to reject only samples that have a mean extremely different from the mean of the Anderson population.\n", "
\n", "\n", "
\n",
    "# Visualize graphically the result of the t-test with alpha at 0.01\n",
    "visualize_ttest(sample_size, alpha01, t)\n",
    "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Conclusion\n", "\n", "What can we conclude from there? What the one sample t-test tells us is that we don't have evidence which would lead us to think that the sample doesn't come from an Anderson like population. Therefore we **cannot reject our hypothesis $H_0$**. However this is not the same to say that *it is* the same as the Anderson population. This is one of the **important limits of the t-test**: like many other statistical tests, **it can be used only to reject an hypothesis** (the null hypothesis), not to confirm it.\n", "\n", "Now there are other limitations to keep in mind when using the one sample t-test, that we will explore in the section below.\n", "\n", " \n", "\n", "---" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Influence of the sample size\n", "\n", "Above, we have seen that $t = $\n", "$\n", "\\begin{align}\n", "\\frac{m - \\mu}{\\sigma_{\\overline{X}}}\n", "\\end{align}\n", "$ and that $\\sigma_{\\overline{X}} = $\n", "$\n", "\\begin{align}\n", "\\frac{s}{\\sqrt{n}}\n", "\\end{align}\n", "$.\n", "\n", "Therefore we can rewrite the *t* statistics as:\n", "\n", "$\n", "\\begin{align}\n", "t = \\frac{m - \\mu}{\\frac{s}{\\sqrt{n}}}\n", "\\end{align}\n", "$\n", "\n", "This means that *t* is actually:\n", "\n", "$\n", "\\begin{align}\n", "t = \\frac{m - \\mu}{s}\\sqrt{n}\n", "\\end{align}\n", "$\n", "\n", "From there, we see that the **sample size $n$ influences the value of $t$**: all else being equal (i.e. sample mean, sample standard deviation and population mean), **a larger sample would result in a higher value of $t$** and therefore more chances to find a significant result for the t-test.\n", "\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Question
\n", " For our irises from the Vullierens Castle, which sample size would make the value of $t$ reach our cutoff point of 2.01, all else being equal (i.e. with identical sample mean, sample standard deviation and population mean)?
\n", " Use the code cell below to write your answer in Python and test it.\n", "

You can check your answer here.

\n", "
" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Make your calculation in Python here\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "
\n", " Solution
\n", "We want to find the value of $n$ that would make $t$ at least equal to 2.01.
\n", "We know that $t = $\n", "$\n", "\\begin{align}\n", "\\frac{m - \\mu}{s}\\sqrt{n}\n", "\\end{align}\n", "$.\n", "
In other words, we are looking for the value of $n$ such as:\n", "$\n", "\\begin{align}\n", "\\frac{m - \\mu}{s}\\sqrt{n} = 2.01\n", "\\end{align}\n", "$.
\n", "We can rewrite this expression to find $n$, which gives: \n", "$\n", "\\begin{align}\n", "n = \\left(\\frac{2.01 s}{m - \\mu}\\right)^2\n", "\\end{align}\n", "$ with $s$ the sample standard deviation, $m$ the sample mean and $\\mu$ the population mean.
\n", "
\n", "Then we have to write this in Python using the variables we have defined earlier and display the result. For squaring, either we just replace by a multiplication, which is what we have done below, or we use the Python operator ** for power raising ($x^2$ is then written x ** 2). See the solution code below, in which we have used the variable cutoff05 instead of the raw number 2.01 but that would work too.
\n", "We obtain n = 143.53, which means that a sample size of 144 flowers or more with the same mean and standard deviation for the petal length would make the t-statistic above our cutoff point.\n", "
\n", "\n", "
\n",
    "# Make your calculation in Python here\n",
    "n = ((cutoff05 * sample_std) / (sample_mean - mu)) * ((cutoff05 * sample_std) / (sample_mean - mu))\n",
    "\n",
    "# Display the result\n",
    "n\n",
    "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "So for instance, for our irises from the Vullierens Castle, **a sample of 144 flowers instead of 50** with exactly the same mean and standard deviation for the petal length would be considered as statistically different from the Anderson population. \n", "\n", "This is why when doing experiments, researchers generally try to get samples as large as possible - but of course this has a cost and is not always possible!\n", "\n", " \n", "\n", "---" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Using the *p-value*\n", "\n", "In scientific studies, researchers use frequently the t-test but they generally report not only the t-statistic but also **another result of the t-test which is called the p-value**. In the following, we explore what is the p-value, how it relates to the t-statistic and how it can be used." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Testing our hypothesis using a predefined Python function\n", "\n", "So far we have made the computations by hand but Python comes with a number of libraries with interesting statistical tools. \n", "In particular, the `stats` library includes a function for doing a **one-sample t-test** as we have done above. \n", "\n", "Let's now use it and then look at what information it gives us." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Compute the t-test\n", "t, p = stats.ttest_1samp(sample_data[\"petal_length\"], mu)\n", "\n", "# Display the result\n", "print(\"t = {:.3f}\".format(t))\n", "print(\"p = {:.3f}\".format(p))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We see that the predefined Python function for doing the one-sample t-test gives us the same value for the $t$ statistic as the calculations we have made by hand: $t = 1.185$. \n", "In addition, we see that it also returns another value, $p = 0.242$. \n", "\n", "Actually, the two values `t` and `p` returned by the function say the same thing but in two different ways:\n", "* `t` tells us where our sample mean falls on the distribution of all the possible sample means for the Anderson population ;
\n", " `t` has to be compared to the cutoff value (2.01) to know if our sample mean is in the most extremes 5%.\n", "* `p` is **called the \"p-value\"** and is the **probability to get a more extreme sample mean** than the one we observe ;
\n", " `p` has to be compared to $\\alpha$ (0.05) to know if our sample mean is in the most extremes 5%.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Question
\n", " How does t compare to the cutoff value (2.01)?
\n", " And how does p compare to $\\alpha$ (0.05)?
\n", "

You can check your answer here.

\n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "
\n", " Solution
\n", " \n", "We see above that:\n", "* $t = 1.185$ therefore $|t| < 2.01$, which means that the difference between the two means is smaller than 2.01 times the standard error \n", "* and $p = 0.242$ therefore $p > 0.05$, which means that the probability of getting more extreme sample mean than the one we observe is higher than 5% so our sample mean cannot be considered as one of the 5% most extreme possible values. \n", "\n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "As expected from the calculations we have made by hand above, the test using the predefined Python function confirms that the difference between the mean petal length of the Vullierens sample and the mean petal length of Anderson's population is **not statistically significant**.\n", "\n", "As we have just seen, **you can use either `t` or `p` to interpret the result of the t-test.** In practice, most people use the p-value because it can be directly compared to $\\alpha$ without having to look for the cutoff value in tables. However, as we will see more in details below, **`t` and `p` do not provide exactly the same information about the result of the test**, and it is important to understand how they differ." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Visualization of the p-value\n", "\n", "Using Python we can visualize what the t-test graphically by plotting the t-distribution of all the possible sample means that would be drawn from a population with the same mean as Anderson's population and showing where `t` is in the distribution compared to the zone defined by our $\\alpha$ of 5%.\n", "\n", "In addition to displaying the value of *t*, the visualization below also **shows the *p-value*** (represented by the hatched zone), which is the **area under the curve of the t-distribution** representing the probability of getting a more extreme sample mean than the one we observe. When this area is larger than the rejection zone defined by the $\\alpha$ we have chosen, then that means the difference between the sample mean and the population mean is not statistically significant." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Visualize graphically the result of the t-test and the p-value with alpha at 0.05\n", "visualize_ttest_pvalue(sample_size, alpha05, t, p)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Question
\n", " What values does the function visualize_ttest_pvalue need to generate a visualization of the result of a t-test?
\n", " In the code cell below, use this function to generate the visualization of a value of $t=-1.702$ and $p=0.095$ with the same sample size and same value for $\\alpha$ as in the example above.
\n", " What can you observe with this negative value for $t$?
\n", " How would you say that the p-value (the hatched zone) evolves when $|t|$ gets bigger?
\n", "

You can check your answer here.

\n", "
" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Visualize graphically the result of a t-test of t=-1.702 and p=0.095\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "
\n", " Solution
\n", " The visualize_ttest_pvalue function needs 4 different values to generate the visualization: the sample size, the significance level $\\alpha$, the value of $t$ and the value of $p$.
\n", " To generate a new visualization, we can simply copy-paste the visualize_ttest_pvalue function of the code cell above and replace t by the value -1.702 and p by the value 0.095, see the solution code below.
\n", " Because the value of t is negative, the bar representing $t$ now appears on the left side of the curve representing the t-distribution.
\n", " When comparing with the previous graph, we see that when $|t|$ is bigger, the hatched zone representing $p$ is smaller.\n", " More generally, using the visualization, we can see that the bigger $|t|$ we get, the smaller the hatched zone we get and therefore the smaller the p-value we get. We therefore see that $t$ and $p$ evolve in opposite directions. \n", "
\n", "\n", "
\n",
    "# Visualize graphically the result of a t-test of t=-1.702 and p=0.095\n",
    "visualize_ttest_pvalue(sample_size, alpha05, -1.702, 0.095)\n",
    "
\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Thanks to the visualization above, we see that one important difference between the t-statistic and the p-value is that that $|t|$ and $p$ evolve in opposite directions: the bigger $|t|$ is, the smaller$p$ is.\n", "\n", "Another important difference, is that **the t-statistic tells us whether the sample mean $m$ is greater or smaller than the population mean $\\mu$** whereas this is impossible to know with the p-value only: since the p-value corresponds to the area under the curve of the t-distribution, it is always positive. \n", "As we have seen earlier, the t-distribution is centred on zero, with zero meaning $m = \\mu$ and:\n", "* when $t > 0$ (i.e. $t$ is on the *right* side of the distribution on the visualization above) it means that $m > \\mu$ ;\n", "* when $t < 0$ (i.e. $t$ is on the *left* side of the distribution on the visualization above) it means that $m < \\mu$.\n", "\n", "\n", "\n", " \n", "\n", "---\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Importance of the choice of $\\alpha$\n", "\n", "So far we have seen two important points to keep in mind when using the t-test to compare a sample to a population: first the size of the sample matters and second the t-test provides us with two pieces of information, the t-statistic and the p-value, which are both useful but in different ways. In this section, we look at a third important point to keep in mind when doing statistical testing: the **influence of the choice of $\\alpha$**." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Let's compare our Vullierens sample to another population\n", "\n", "
\n", " \"Iris\n", "\n", "###### Iris Ensata (Credit: Laitche CC BY-SA 3.0)\n", "\n", "
\n", "\n", "Let's imagine we want to know how our Vullierens sample compares to another iris population, for instance a Japanese iris species called Iris Ensata with a mean petal length of $\\mu_{ensata} = 5.832$ cm. We can apply the hypothesis testing approach that we have just learned and use a one-sample t-test to do the comparison, which we do in 4 steps:\n", "\n", "1. Get an idea about how the sample compares to the population: \n", " At first sight, the sample petal mean of our Vullierens sample, $m= 5.646$ cm, is again quite close to the mean petal length of the Ensata population, $\\mu_{ensata} = 5.832$ cm. \n", "\n", "2. Formulate the hypotheses we want to test:\n", " * First let's state our null hypothesis, which is that the Vullierens sample is similar to the Iris Ensata population, $H_0: m = \\mu_{ensata}$. \n", " This is the hypothesis we want to know whether we can reject or not.\n", " * And then state the alternate hypothesis $H_a: m \\neq \\mu_{ensata}$.\n", "\n", "\n", "3. Choose a significance level: \n", " Let's choose $\\alpha=0.05$ as previously, which means we want to be 95% sure.\n", "\n", "4. Compute the result of the t-test by using the predefined Python function stats.ttest_1samp :" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Define the mean petal length of the Ensata population\n", "mu_ensata = 5.832\n", "\n", "# Compute the t-test comparing the Vullierens sample petal length to the Ensata population mean\n", "t, p = stats.ttest_1samp(sample_data[\"petal_length\"], mu_ensata)\n", "\n", "# Display the result\n", "print(\"t = {:.3f}\".format(t))\n", "print(\"p = {:.3f}\".format(p))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The result of the t-test gives $t = -2.346$ and $p = 0.023$.\n", "\n", "With $\\alpha=0.05$, the cutoff value is 2.01. We see that $|t| > 2.01$ and $p < 0.05$. Therefore, the test tells us that the difference between the mean petal length of the Vullierens sample and the mean petal length of the Ensata population IS statistically significant. In other words, we can reject the hypothesis that the Vullierens sample is similar to the Ensata population." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## What is the role of $\\alpha$ in this result?\n", "\n", "Now let's ask ourselves **what would have been the conclusion of the test if we had chosen a significance level of $\\alpha=0.01$**, i.e. if we wanted to be 99% sure?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Question
\n", " In the code cell below, use the function visualize_ttest_pvalue to generate two visualizations of the result of this t-test: one with $\\alpha=0.05$ and then another with $\\alpha=0.01$.
\n", " How do you interpret the results?
\n", "

You can check your answer here.

\n", "
" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Visualize graphically the result of the t-test with alpha05\n", "\n", "# Visualize graphically the result of the t-test with alpha01\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "
\n", " Solution
\n", " We copy-paste the code of the cell above with the visualize_ttest_pvalue function twice: in one we use cutoff05 and in the other we use cutoff01, the other parameters remaining the same, see the code cell below.
\n", " When comparing the two visualizations we see that, while $t$ is at the same place in both, the rejection zone is much smaller in the second visualization i.e. when $\\alpha=0.01$, reflecting the fact that we want to be sure that the sample is extremely different from the population (i.e. is part of the 1% most extreme possible samples for a population with this mean petal length) before rejecting our null hypothesis $H_0$.
\n", " As a consequence, $t$ falls into the rejection zone in the first visualization but not in the second, which means that when choosing $\\alpha = 0.01$, we cannot reject anymore our null hypothesis $H_0$. The conclusion in this case is that, with $\\alpha=0.01$, the difference between the mean petal length of the Vullierens sample and the mean petal length the Ensata population cannot be considered as statistically significant.\n", "
\n", "\n", "
\n",
    "# Visualize graphically the result of the t-test with alpha05\n",
    "visualize_ttest_pvalue(sample_size, alpha05, t, p)\n",
    "\n",
    "# Visualize graphically the result of the t-test with alpha01\n",
    "visualize_ttest_pvalue(sample_size, alpha01, t, p)\n",
    "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For $\\alpha = 0.01$, the cutoff value which we get from the tables is 2.67. With this choice of $\\alpha$, we see that $|t| < 2.67$ and $p > 0.01$. This means that when choosing $\\alpha = 0.01$, the test tells us that the difference between the mean petal length of the Vullierens sample and the mean petal length the Ensata population is NOT statistically significant anymore. In other words, if we want to be sure at the 1% level, we cannot reject anymore the hypothesis that the Vullierens sample is similar to the Ensata population.\n", "\n", "This illustrates the importance of the choice of $\\alpha$ when testing an hypothesis." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ " \n", "\n", "---" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Summary\n", "\n", "In this notebook, you have seen how to compare a sample to a population using an approach called **hypothesis testing** and using a statistical test called a **one-sample t-test**.\n", "\n", "To summarize, to compare the mean of a sample to a reference value from a population, you have to proceed in four main steps:\n", "1. Look at descriptive statistics and visualizations of the sample you have to get an idea about how it compares to the population\n", "1. Formulate the hypothese you want to test: the null hypothesis $H_0: m = \\mu$ and its alternate $H_a: m \\neq \\mu$ \n", "1. Choose a significance level for being sure, usually $\\alpha = 0.05$ or $\\alpha = 0.01$, or even $\\alpha = 0.001$ \n", "1. Compute the result of the t-test and interpret the result - in particular if the p-value is *below* the significance level you have chosen, $p \\lt \\alpha$, then it means $H_0$ should probably be rejected" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ " \n", "\n", "---\n", "\n", "

Bibliography

\n", "\n", "[1] E. Anderson (1935). \"The Irises of the Gaspe Peninsula.\" Bulletin of the American Iris Society 59: 2–5.\n", "\n", "[2] R. A. Fisher (1936). \"The use of multiple measurements in taxonomic problems\". Annals of Eugenics. 7 (2): 179–188. doi:10.1111/j.1469-1809.1936.tb02137.x\n", "\n", "More about the Iris Dataset on Wikipedia: https://en.wikipedia.org/wiki/Iris_flower_data_set\n", "\n", "*Please note that the datasets used in this notebook have been generated using a random generator, it does not come from real measurement and cannot be used for any research purpose.*" ] } ], "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.6.9" }, "toc-autonumbering": true }, "nbformat": 4, "nbformat_minor": 4 }