{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Tutorial\n", "The tutorial is based on the Software Carpentry intro to Python:\n", "- https://github.com/swcarpentry/python-novice-inflammation\n", "- https://swcarpentry.github.io/python-novice-inflammation/01-numpy\n", "\n", "# Setup\n", "- https://swcarpentry.github.io/python-novice-inflammation/setup" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "mkdir swc-python" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "cd swc-python" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "!wget https://swcarpentry.github.io/python-novice-inflammation/data/python-novice-inflammation-data.zip\n", "!wget https://swcarpentry.github.io/python-novice-inflammation/code/python-novice-inflammation-code.zip" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "!unzip python-novice-inflammation-data.zip\n", "!unzip python-novice-inflammation-code.zip" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "cd data" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "!ls -al" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Variables\n", "\n", "Any Python interpreter can be used as a calculator:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "3 + 5 * 4" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This is great but not very interesting.\n", "To do anything useful with data, we need to assign its value to a _variable_.\n", "In Python, we can assign a value to a variable, using the equals sign `=`.\n", "For example, to assign value `60` to a variable `weight_kg`, we would execute:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "weight_kg = 60" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "From now on, whenever we use `weight_kg`, Python will substitute the value we assigned to\n", "it. In essence, **a variable is just a name for a value**.\n", "\n", "In Python, variable names:\n", "\n", " - can include letters, digits, and underscores\n", " - cannot start with a digit\n", " - are case sensitive.\n", "\n", "This means that, for example:\n", " - `weight0` is a valid variable name, whereas `0weight` is not\n", " - `weight` and `Weight` are different variables\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Types of data\n", "Python knows various types of data. Three common ones are:\n", "\n", "* integer numbers\n", "* floating point numbers, and\n", "* strings.\n", "\n", "In the example above, variable `weight_kg` has an integer value of `60`.\n", "To create a variable with a floating point value, we can execute:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "weight_kg = 60.0" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And to create a string we simply have to add single or double quotes around some text, for example:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "weight_kg_text = 'weight in kilograms:'" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Using Variables in Python\n", "To display the value of a variable to the screen in Python, we can use the `print` function:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(weight_kg)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can display multiple things at once using only one `print` command:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(weight_kg_text, weight_kg)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Moreover, we can do arithmetic with variables right inside the `print` function:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print('weight in pounds:', 2.2 * weight_kg)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The above command, however, did not change the value of `weight_kg`:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(weight_kg)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "To change the value of the `weight_kg` variable, we have to\n", "**assign** `weight_kg` a new value using the equals `=` sign:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "weight_kg = 65.0\n", "print('weight in kilograms is now:', weight_kg)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "While a lot of powerful, general tools are built into Python, specialized tools built up from these basic units live in _libraries_ that can be called upon when needed." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Loading data into Python\n", "In order to load our inflammation data, we need to access\n", "(\"import\" in Python terminology) a library called\n", "[NumPy](http://docs.scipy.org/doc/numpy/ \"NumPy Documentation\"). In general you should use this\n", "library if you want to do fancy things with numbers, especially if you have matrices or arrays. We\n", "can import NumPy using:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import numpy" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Importing a library is like getting a piece of lab equipment out of a storage locker and setting it\n", "up on the bench. Libraries provide additional functionality to the basic Python package, much like\n", "a new piece of equipment adds functionality to a lab space. Just like in the lab, importing too\n", "many libraries can sometimes complicate and slow down your programs - so we only import what we\n", "need for each program. Once we've imported the library, we can ask the library to read our data\n", "file for us:\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "numpy.loadtxt(fname='inflammation-01.csv', delimiter=',')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The expression `numpy.loadtxt(...)` is a _function call_ that asks Python to run the _function_ `loadtxt` which belongs to the `numpy` library. This _dotted notation_ is used everywhere in Python: the thing that appears before the dot contains the thing that appears after.\n", "\n", "As an example, John Smith is the John that belongs to the Smith family.\n", "We could use the dot notation to write his name `smith.john`,\n", "just as `loadtxt` is a function that belongs to the `numpy` library.\n", "\n", "`numpy.loadtxt` has two _parameters_: the name of the file we want to read and the delimiter that separates values on\n", "a line. These both need to be character strings (or strings for short), so we put them in quotes.\n", "\n", "Since we haven't told it to do anything else with the function's output, the notebook displays it.\n", "In this case, that output is the data we just loaded.\n", "By default, only a few rows and columns are shown\n", "(with `...` to omit elements when displaying big arrays). To save space, Python displays numbers as `1.` instead of `1.0` when there's nothing interesting after the decimal point.\n", "\n", "Our call to `numpy.loadtxt` read our file\n", "but didn't save the data in memory.\n", "To do that, we need to assign the array to a variable. Just as we can assign a single value to a variable, we\n", "can also assign an array of values to a variable using the same syntax. Let's re-run\n", "`numpy.loadtxt` and save the returned data:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "data = numpy.loadtxt(fname='inflammation-01.csv', delimiter=',')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This statement doesn't produce any output because we've assigned the output to the variable `data`.\n", "If we want to check that the data have been loaded,\n", "we can print the variable's value:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(data)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now that the data are in memory,\n", "we can manipulate them.\n", "First, let's ask what _type_ of thing `data` refers to:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(type(data))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The output tells us that `data` currently refers to\n", "an N-dimensional array, the functionality for which is provided by the NumPy library.\n", "These data correspond to arthritis patients' inflammation.\n", "The rows are the individual patients, and the columns\n", "are their daily inflammation measurements.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Data Type\n", "\n", "A Numpy array contains one or more elements\n", "of the same type. The `type` function will only tell you that a variable is a NumPy array but won't tell you the type of thing inside the array.\n", "We can find out the type of the data contained in the NumPy array.\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(data.dtype)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This tells us that the NumPy array's elements are\n", "_floating-point numbers_." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "With the following command, we can see the array's _shape_:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(data.shape)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The output tells us that the `data` array variable contains 60 rows and 40 columns. When we\n", "created the variable `data` to store our arthritis data, we didn't just create the array; we also\n", "created information about the array, called attributes. `data.shape` is an attribute of `data` which describes the dimensions of `data`. We use the same dotted notation for the attributes of variables that we use for the functions in libraries because\n", "they have the same part-and-whole relationship.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If we want to get a single number from the array, we must provide an _index_ in square brackets after the variable name, just as we do in math when referring to an element of a matrix. Our inflammation data has two dimensions, so we will need to use two indices to refer to one specific value:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print('first value in data:', data[0, 0])" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print('middle value in data:', data[30, 20])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The expression `data[30, 20]` accesses the element at row 30, column 20. While this expression may\n", "not surprise you,\n", " `data[0, 0]` might.\n", "\n", "Programming languages like Fortran, MATLAB and R start counting at 1\n", "because that's what human beings have done for thousands of years.\n", "\n", "Languages in the C family (including C++, Java, Perl, and Python) count from 0\n", "because it represents an offset from the first value in the array (the second\n", "value is offset by one index from the first value). This is closer to the way\n", "that computers represent arrays (if you are interested in the historical\n", "reasons behind counting indices from zero, you can read\n", "[Mike Hoye's blog post](http://exple.tive.org/blarg/2013/10/22/citation-needed/)).\n", "\n", "As a result,\n", "if we have an M×N array in Python,\n", "its indices go from 0 to M-1 on the first axis\n", "and 0 to N-1 on the second.\n", "It takes a bit of getting used to,\n", "but one way to remember the rule is that\n", "the index is how many steps we have to take from the start to get the item we want.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "> ## In the Corner\n", ">\n", "> What may also surprise you is that when Python displays an array,\n", "> it shows the element with index `[0, 0]` in the upper left corner\n", "> rather than the lower left.\n", "> This is consistent with the way mathematicians draw matrices\n", "> but different from the Cartesian coordinates.\n", "> The indices are (row, column) instead of (column, row) for the same reason,\n", "> which can be confusing when plotting data.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Slicing data\n", "An index like `[30, 20]` selects a single element of an array,\n", "but we can select whole sections as well.\n", "For example,\n", "we can select the first ten days (columns) of values\n", "for the first four patients (rows) like this:\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(data[0:4, 0:10])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The _slice_ `0:4` means, \"Start at index 0 and go up to, but not including, index 4.\"\n", "\n", "Again, the up-to-but-not-including takes a bit of getting used to, but the rule is that the difference between the upper and lower bounds is the number of values in the slice.\n", "\n", "We don't have to start slices at 0:\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(data[5:10, 0:10])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We also don't have to include the upper and lower bound on the slice. If we don't include the lower\n", "bound, Python uses 0 by default; if we don't include the upper, the slice runs to the end of the\n", "axis, and if we don't include either (i.e., if we just use ':' on its own), the slice includes\n", "everything:\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "small = data[:3, 36:]\n", "print('small is:')\n", "print(small)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The above example selects rows 0 through 2 and columns 36 through to the end of the array." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "Arrays also know how to perform common mathematical operations on their values. The simplest\n", "operations with data are arithmetic: addition, subtraction, multiplication, and division. When you\n", "do such operations on arrays, the operation is done element-by-element. Thus:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "doubledata = data * 2.0" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "will create a new array `doubledata`\n", "each element of which is twice the value of the corresponding element in `data`:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print('original:')\n", "print(data[:3, 36:])\n", "print('doubledata:')\n", "print(doubledata[:3, 36:])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If, instead of taking an array and doing arithmetic with a single value (as above), you did the\n", "arithmetic operation with another array of the same shape, the operation will be done on\n", "corresponding elements of the two arrays. Thus:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "tripledata = doubledata + data" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "will give you an array where `tripledata[0,0]` will equal `doubledata[0,0]` plus `data[0,0]`,\n", "and so on for all other elements of the arrays." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print('tripledata:')\n", "print(tripledata[:3, 36:])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Often, we want to do more than add, subtract, multiply, and divide array elements. NumPy knows how\n", "to do more complex operations, too. If we want to find the average inflammation for all patients on\n", "all days, for example, we can ask NumPy to compute `data`'s mean value:\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(numpy.mean(data))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "`mean` is a _function_ that takes\n", "an array as an _argument_." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "> ## **Note**: Not All Functions Have Input\n", "> \n", "> Generally, a function uses inputs to produce outputs.\n", "> However, some functions produce outputs without\n", "> needing any input. For example, checking the current time doesn't require any input." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import time\n", "print(time.ctime())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "> For functions that don't take in any arguments,\n", "> we still need parentheses (`()`)\n", "> to tell Python to go and do something for us." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "NumPy has lots of useful functions that take an array as input.\n", "Let's use three of those functions to get some descriptive values about the dataset.\n", "We'll also use multiple assignment,\n", "a convenient Python feature that will enable us to do this all in one line." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "maxval, minval, stdval = numpy.max(data), numpy.min(data), numpy.std(data)\n", "\n", "print('maximum inflammation:', maxval)\n", "print('minimum inflammation:', minval)\n", "print('standard deviation:', stdval)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here we've assigned the return value from `numpy.max(data)` to the variable `maxval`, the value\n", "from `numpy.min(data)` to `minval`, and so on." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "> ## Mystery Functions in IPython\n", ">\n", "> How did we know what functions NumPy has and how to use them?\n", "> If you are working in IPython or in a Jupyter Notebook, there is an easy way to find out.\n", "> If you type the name of something followed by a dot, then you can use tab completion\n", "> (e.g. type `numpy.` and then press tab)\n", "> to see a list of all functions and attributes that you can use. After selecting one, you\n", "> can also add a question mark (e.g. `numpy.cumprod?`), and IPython will return an\n", "> explanation of the method! This is the same as doing `help(numpy.cumprod)`.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "When analyzing data, though,\n", "we often want to look at variations in statistical values,\n", "such as the maximum inflammation per patient\n", "or the average inflammation per day.\n", "One way to do this is to create a new temporary array of the data we want,\n", "then ask it to do the calculation:\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "patient_0 = data[0, :] # 0 on the first axis (rows), everything on the second (columns)\n", "print('maximum inflammation for patient 0:', numpy.max(patient_0))\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Everything in a line of code following the '#' symbol is a\n", "_comment_ that is ignored by Python.\n", "Comments allow programmers to leave explanatory notes for other\n", "programmers or their future selves." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We don't actually need to store the row in a variable of its own.\n", "Instead, we can combine the selection and the function call:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print('maximum inflammation for patient 2:', numpy.max(data[2, :]))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "What if we need the maximum inflammation for each patient over all days or the average for each day? As the diagram at https://swcarpentry.github.io/python-novice-inflammation/01-numpy/index.html shows, we want to perform the operation across an axis.\n", "\n", "To support this functionality,\n", "most array functions allow us to specify the axis we want to work on.\n", "If we ask for the average across axis 0 (rows in our 2D example),\n", "we get:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(numpy.mean(data, axis=0))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As a quick check,\n", "we can ask this array what its shape is:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(numpy.mean(data, axis=0).shape)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The expression `(40,)` tells us we have an N×1 vector,\n", "so this is the average inflammation per day for all patients.\n", "If we average across axis 1 (columns in our 2D example), we get:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(numpy.mean(data, axis=1))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "which is the average inflammation per patient across all days." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Visualizing data\n", "The mathematician Richard Hamming once said, \"The purpose of computing is insight, not numbers,\" and\n", "the best way to develop insight is often to visualize data. Visualization deserves an entire\n", "lecture of its own, but we can explore a few features of Python's `matplotlib` library here. While\n", "there is no official plotting library, `matplotlib` is the _de facto_ standard. First, we will\n", "import the `pyplot` module from `matplotlib` and use two of its functions to create and display a\n", "heat map of our data:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%matplotlib widget\n", "import matplotlib.pyplot\n", "image = matplotlib.pyplot.imshow(data)\n", "# matplotlib.pyplot.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Blue pixels in this heat map represent low values, while yellow pixels represent high values. As we\n", "can see, inflammation rises and falls over a 40-day period." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's take a look at the average inflammation over time:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "matplotlib.pyplot.figure()\n", "ave_inflammation = numpy.mean(data, axis=0)\n", "ave_plot = matplotlib.pyplot.plot(ave_inflammation)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here, we have put the average per day across all patients in the variable `ave_inflammation`, then\n", "asked `matplotlib.pyplot` to create and display a line graph of those values. The result is a\n", "roughly linear rise and fall, which is suspicious: we might instead expect a sharper rise and slower\n", "fall. Let's have a look at two other statistics:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "matplotlib.pyplot.figure()\n", "max_plot = matplotlib.pyplot.plot(numpy.max(data, axis=0))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "matplotlib.pyplot.figure()\n", "min_plot = matplotlib.pyplot.plot(numpy.min(data, axis=0))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The maximum value rises and falls smoothly, while the minimum seems to be a step function. Neither\n", "trend seems particularly likely, so either there's a mistake in our calculations or something is\n", "wrong with our data. This insight would have been difficult to reach by examining the numbers\n", "themselves without visualization tools." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Grouping plots\n", "You can group similar plots in a single figure using subplots.\n", "This script below uses a number of new commands. The function `matplotlib.pyplot.figure()`\n", "creates a space into which we will place all of our plots. The parameter `figsize`\n", "tells Python how big to make this space. Each subplot is placed into the figure using\n", "its `add_subplot` [method]({{ page.root }}/reference/#method). The `add_subplot` method takes 3\n", "parameters. The first denotes how many total rows of subplots there are, the second parameter\n", "refers to the total number of subplot columns, and the final parameter denotes which subplot\n", "your variable is referencing (left-to-right, top-to-bottom). Each subplot is stored in a\n", "different variable (`axes1`, `axes2`, `axes3`). Once a subplot is created, the axes can\n", "be titled using the `set_xlabel()` command (or `set_ylabel()`).\n", "Here are our three plots side by side:\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import numpy\n", "import matplotlib.pyplot\n", "\n", "data = numpy.loadtxt(fname='inflammation-01.csv', delimiter=',')\n", "\n", "fig = matplotlib.pyplot.figure(figsize=(10.0, 3.0))\n", "\n", "axes1 = fig.add_subplot(1, 3, 1)\n", "axes2 = fig.add_subplot(1, 3, 2)\n", "axes3 = fig.add_subplot(1, 3, 3)\n", "\n", "axes1.set_ylabel('average')\n", "axes1.plot(numpy.mean(data, axis=0))\n", "\n", "axes2.set_ylabel('max')\n", "axes2.plot(numpy.max(data, axis=0))\n", "\n", "axes3.set_ylabel('min')\n", "axes3.plot(numpy.min(data, axis=0))\n", "\n", "fig.tight_layout()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The call to `loadtxt` reads our data,\n", "and the rest of the program tells the plotting library\n", "how large we want the figure to be,\n", "that we're creating three subplots,\n", "what to draw for each one,\n", "and that we want a tight layout.\n", "(If we leave out that call to `fig.tight_layout()`,\n", "the graphs will actually be squeezed together more closely.)\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "> ## Scientists Dislike Typing\n", ">\n", "> We will always use the syntax `import numpy` to import NumPy.\n", "> However, in order to save typing, it is\n", "> [often suggested](http://www.scipy.org/getting-started.html#an-example-script)\n", "> to make a shortcut like so: `import numpy as np`.\n", "> If you ever see Python code online using a NumPy function with `np`\n", "> (for example, `np.loadtxt(...)`), it's because they've used this shortcut.\n", "> When working with other people, it is important to agree on a convention of how common libraries\n", "> are imported.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Check Your Understanding\n", "\n", "What values do the variables `mass` and `age` have after each statement in the following program?\n", "Test your answers by executing the commands.\n", "```python\n", "mass = 47.5\n", "age = 122\n", "mass = mass * 2.0\n", "age = age - 20\n", "print(mass, age)\n", "```" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Your code goes here:\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Sorting Out References\n", "\n", "What does the following program print out?\n", "\n", "```python\n", "first, second = 'Grace', 'Hopper'\n", "third, fourth = second, first\n", "print(third, fourth)\n", "```" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Your code goes here:\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Slicing Strings\n", "\n", "A section of an array is called a [slice]({{ page.root }}/reference/#slice).\n", "We can take slices of character strings as well:\n", "\n", "```python\n", "element = 'oxygen'\n", "print('first three characters:', element[0:3])\n", "print('last three characters:', element[3:6])\n", "```\n", "\n", "```\n", "first three characters: oxy\n", "last three characters: gen\n", "```\n", "\n", "What is the value of `element[:4]`?\n", "What about `element[4:]`?\n", "Or `element[:]`?" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Your code goes here:\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "What is `element[-1]`?\n", "What is `element[-2]`?" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Your code goes here:\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Given those answers,\n", "explain what `element[1:-1]` does." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Your code goes here:\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Thin Slices\n", "\n", "The expression `element[3:3]` produces an empty string,\n", "i.e., a string that contains no characters.\n", "If `data` holds our array of patient data,\n", "what does `data[3:3, 4:4]` produce?\n", "What about `data[3:3, :]`?\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Your code goes here:\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "## Plot Scaling\n", "\n", "Why do all of our plots stop just short of the upper end of our graph?\n", "\n", "If we want to change this, we can use the `set_ylim(min, max)` method of each 'axes',\n", "for example:\n", "```python\n", "axes3.set_ylim(0,6)\n", "```\n", "\n", "Update your plotting code to automatically set a more appropriate scale.\n", "(Hint: you can make use of the `max` and `min` methods to help.)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Your code goes here:\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Make Your Own Plot\n", "\n", "Create a plot showing the standard deviation (`numpy.std`)\n", "of the inflammation data for each day across all patients." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Your code goes here:\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Moving Plots Around\n", "\n", "Modify the program to display the three plots on top of one another\n", "instead of side by side." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Your code goes here:\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "## Stacking Arrays\n", "\n", "Arrays can be concatenated and stacked on top of one another,\n", "using NumPy's `vstack` and `hstack` functions for vertical and horizontal stacking, respectively.\n", "\n", "```python\n", "import numpy\n", "\n", "A = numpy.array([[1,2,3], [4,5,6], [7, 8, 9]])\n", "print('A = ')\n", "print(A)\n", "\n", "B = numpy.hstack([A, A])\n", "print('B = ')\n", "print(B)\n", "\n", "C = numpy.vstack([A, A])\n", "print('C = ')\n", "print(C)\n", "```\n", "\n", "```\n", "A =\n", "[[1 2 3]\n", " [4 5 6]\n", " [7 8 9]]\n", "B =\n", "[[1 2 3 1 2 3]\n", " [4 5 6 4 5 6]\n", " [7 8 9 7 8 9]]\n", "C =\n", "[[1 2 3]\n", " [4 5 6]\n", " [7 8 9]\n", " [1 2 3]\n", " [4 5 6]\n", " [7 8 9]]\n", "```\n", "\n", "Write some additional code that slices the first and last columns of `A`,\n", "and stacks them into a 3x2 array.\n", "Make sure to `print` the results to verify your solution." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Your code goes here:\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Change In Inflammation\n", "\n", "This patient data is _longitudinal_ in the sense that each row represents a\n", "series of observations relating to one individual. This means that\n", "the change in inflammation over time is a meaningful concept.\n", "\n", "The `numpy.diff()` function takes a NumPy array and returns the\n", "differences between two successive values along a specified axis. For\n", "example, a NumPy array that looks like this:\n", "\n", "```python\n", "npdiff = numpy.array([ 0, 2, 5, 9, 14])\n", "```\n", "\n", "Calling `numpy.diff(npdiff)` would do the following calculations and\n", "put the answers in another array.\n", "\n", "```python\n", "[ 2 - 0, 5 - 2, 9 - 5, 14 - 9 ]\n", "```\n", "\n", "```python\n", "numpy.diff(npdiff)\n", "```\n", "\n", "```python\n", "array([2, 3, 4, 5])\n", "```\n", "\n", "Which axis would it make sense to use this function along?" ] }, { "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.7" } }, "nbformat": 4, "nbformat_minor": 2 }