{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# This is a Jupyter notebook loaded from the Github repo below:\n", "# https://github.com/jakelever/bootstrap_lesson" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Let's import some modules for numerical functions, plotting and randomness\n", "\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n", "import random\n", "random.seed(42)\n", "\n", "# And let's load the steps dataset which is a list of step counts\n", "\n", "data = np.loadtxt('steps_data.tsv')" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "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.1" } }, "nbformat": 4, "nbformat_minor": 4 }