# This is a Jupyter notebook loaded from the Github repo below:
# https://github.com/jakelever/bootstrap_lesson
# Let's import some modules for numerical functions, plotting and randomness
import numpy as np
import matplotlib.pyplot as plt
import random
random.seed(42)
# And let's load the steps dataset which is a list of step counts
data = np.loadtxt('steps_data.tsv')