#!/usr/bin/env python # coding: utf-8 # In[ ]: # This is a Jupyter notebook loaded from the Github repo below: # https://github.com/jakelever/bootstrap_lesson # In[ ]: # 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') # In[ ]: