Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
swc-bb
S
swc-lessons
2020-04-20-Potsdam-Berlin
Python
Commits
36615d96
Unverified
Commit
36615d96
authored
Dec 17, 2019
by
Maxim Belkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
03-matplotlib.md: remove NumPy-related content
parent
1cd7a3fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
753 deletions
+5
-753
_episodes/03-matplotlib.md
_episodes/03-matplotlib.md
+5
-753
No files found.
_episodes/03-matplotlib.md
View file @
36615d96
---
---
title
:
Analyzing Patient Data
title
:
Analyzing Patient Data
teaching
:
6
0
teaching
:
3
0
exercises
:
3
0
exercises
:
2
0
questions
:
questions
:
-
"
How
can
I
process
tabular
data
files
in
Python?"
-
"
How
can
I
visualize
tabular
data
files
in
Python?"
-
"
How
can
I
group
several
plots
together?"
objectives
:
objectives
:
-
"
Explain
what
a
library
is
and
what
libraries
are
used
for."
-
"
Import
a
Python
library
and
use
the
functions
it
contains."
-
"
Read
tabular
data
from
a
file
into
a
program."
-
"
Select
individual
values
and
subsections
from
data."
-
"
Perform
operations
on
arrays
of
data."
-
"
Plot
simple
graphs
from
data."
-
"
Plot
simple
graphs
from
data."
-
"
Group
several
graphs
in
a
single
figure."
keypoints
:
keypoints
:
-
"
Import
a
library
into
a
program
using
`import
libraryname`."
-
"
Use
the
`numpy`
library
to
work
with
arrays
in
Python."
-
"
The
expression
`array.shape`
gives
the
shape
of
an
array."
-
"
Use
`array[x,
y]`
to
select
a
single
element
from
a
2D
array."
-
"
Array
indices
start
at
0,
not
1."
-
"
Use
`low:high`
to
specify
a
`slice`
that
includes
the
indices
from
`low`
to
`high-1`."
-
"
All
the
indexing
and
slicing
that
works
on
arrays
also
works
on
strings."
-
"
Use
`#
some
kind
of
explanation`
to
add
comments
to
programs."
-
"
Use
`numpy.mean(array)`,
`numpy.max(array)`,
and
`numpy.min(array)`
to
calculate
simple
statistics."
-
"
Use
`numpy.mean(array,
axis=0)`
or
`numpy.mean(array,
axis=1)`
to
calculate
statistics
across
the
specified
axis."
-
"
Use
the
`pyplot`
library
from
`matplotlib`
for
creating
simple
visualizations."
-
"
Use
the
`pyplot`
library
from
`matplotlib`
for
creating
simple
visualizations."
---
---
Words are useful, but what's more useful are the sentences and stories we build with them.
Similarly, while a lot of powerful, general tools are built into Python,
specialized tools built up from these basic units live in
[
libraries
](
{{
page.root }}/reference/#library)
that can be called upon when needed.
## Loading data into Python
In order to load our inflammation data, we need to access
(
[
import
](
{{
page.root }}/reference/#import) in Python terminology) a library called
[
NumPy
](
http://docs.scipy.org/doc/numpy/
"NumPy Documentation"
)
which stands for Numerical Python.
In general you should use this library if you want to do fancy things with numbers,
especially if you have matrices or arrays. We can import NumPy using:
~~~
import numpy
~~~
{: .language-python}
Importing a library is like getting a piece of lab equipment out of a storage locker and setting it
up on the bench. Libraries provide additional functionality to the basic Python package, much like
a new piece of equipment adds functionality to a lab space. Just like in the lab, importing too
many libraries can sometimes complicate and slow down your programs - so we only import what we
need for each program.
Once we've imported the library, we can ask the library to read our data file for us:
~~~
numpy.loadtxt(fname='inflammation-01.csv', delimiter=',')
~~~
{: .language-python}
~~~
array([[ 0., 0., 1., ..., 3., 0., 0.],
[ 0., 1., 2., ..., 1., 0., 1.],
[ 0., 1., 1., ..., 2., 1., 1.],
...,
[ 0., 1., 1., ..., 1., 1., 1.],
[ 0., 0., 0., ..., 0., 2., 0.],
[ 0., 0., 1., ..., 1., 1., 0.]])
~~~
{: .output}
The expression
`numpy.loadtxt(...)`
is a
[
function call
](
{{
page.root }}/reference/#function-call)
that asks Python to run the
[
function
](
{{
page.root }}/reference/#function)
`loadtxt`
which
belongs to the
`numpy`
library. This
[
dotted notation
](
{{
page.root }}/reference/#dotted-notation)
is used everywhere in Python: the thing that appears before the dot contains the thing that
appears after.
As an example, John Smith is the John that belongs to the Smith family.
We could use the dot notation to write his name
`smith.john`
,
just as
`loadtxt`
is a function that belongs to the
`numpy`
library.
`numpy.loadtxt`
has two
[
parameters
](
{{
page.root }}/reference/#parameter): the name of the file
we want to read and the
[
delimiter
](
{{
page.root }}/reference/#delimiter) that separates values on
a line. These both need to be character strings (or
[
strings
](
{{
page.root }}/reference/#string)
for short), so we put them in quotes.
Since we haven't told it to do anything else with the function's output,
the notebook displays it.
In this case,
that output is the data we just loaded.
By default,
only a few rows and columns are shown
(with
`...`
to omit elements when displaying big arrays).
Note that, to save space when displaying NumPy arrays, Python does not show us trailing zeros, so
`1.0`
becomes
`1.`
.
> ## Importing libraries with shortcuts
>
> In this lesson we use the `import numpy` [syntax]({{ page.root }}/reference/#syntax) to import NumPy.
> However, shortcuts such as `import numpy as np` are frequently used. Importing NumPy this way means that after the
> inital import, rather than writing `numpy.loadtxt(...)`, you can now write `np.loadtxt(...)`. Some
> people prefer this as it is quicker to type and results in shorter lines of code - especially for libraries
> with long names! You will frequently see Python code online using a NumPy function with `np`, and it's
> because they've used this shortcut. It makes no difference which approach you choose to take, but you must be
> consistent as if you use `import numpy as np` then `numpy.loadtxt(...)` will not work, and you must use `np.loadtxt(...)`
> instead. Because of this, when working with other people it is important you agree on how libraries are imported.
{: .callout}
Our call to
`numpy.loadtxt`
read our file
but didn't save the data in memory.
To do that,
we need to assign the array to a variable. In a similar manner to how we assign a single
value to a variable, we can also assign an array of values to a variable using the same syntax.
Let's re-run
`numpy.loadtxt`
and save the returned data:
~~~
data = numpy.loadtxt(fname='inflammation-01.csv', delimiter=',')
~~~
{: .language-python}
This statement doesn't produce any output because we've assigned the output to the variable
`data`
.
If we want to check that the data have been loaded,
we can print the variable's value:
~~~
print(data)
~~~
{: .language-python}
~~~
[[ 0. 0. 1. ..., 3. 0. 0.]
[ 0. 1. 2. ..., 1. 0. 1.]
[ 0. 1. 1. ..., 2. 1. 1.]
...,
[ 0. 1. 1. ..., 1. 1. 1.]
[ 0. 0. 0. ..., 0. 2. 0.]
[ 0. 0. 1. ..., 1. 1. 0.]]
~~~
{: .output}
Now that the data are in memory,
we can manipulate them.
First,
let's ask what
[
type
](
{{
page.root }}/reference/#type) of thing
`data`
refers to:
~~~
print(type(data))
~~~
{: .language-python}
~~~
<class 'numpy.ndarray'>
~~~
{: .output}
The output tells us that
`data`
currently refers to
an N-dimensional array, the functionality for which is provided by the NumPy library.
These data correspond to arthritis patients' inflammation.
The rows are the individual patients, and the columns
are their daily inflammation measurements.
> ## Data Type
>
> A Numpy array contains one or more elements
> 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.
> We can find out the type
> of the data contained in the NumPy array.
>
> ~~~
> print(data.dtype)
> ~~~
> {: .language-python}
>
> ~~~
> float64
> ~~~
> {: .output}
>
> This tells us that the NumPy array's elements are
> [floating-point numbers]({{ page.root }}/reference/#floating-point number).
{: .callout}
With the following command, we can see the array's
[
shape
](
{{
page.root }}/reference/#shape):
~~~
print(data.shape)
~~~
{: .language-python}
~~~
(60, 40)
~~~
{: .output}
The output tells us that the
`data`
array variable contains 60 rows and 40 columns. When we
created the variable
`data`
to store our arthritis data, we did not only create the array; we also
created information about the array, called
[
members
](
{{
page.root }}/reference/#member) or
attributes. This extra information describes
`data`
in the same way an adjective describes a noun.
`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
they have the same part-and-whole relationship.
If we want to get a single number from the array, we must provide an
[
index
](
{{
page.root }}/reference/#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:
~~~
print('first value in data:', data[0, 0])
~~~
{: .language-python}
~~~
first value in data: 0.0
~~~
{: .output}
~~~
print('middle value in data:', data[30, 20])
~~~
{: .language-python}
~~~
middle value in data: 13.0
~~~
{: .output}
The expression
`data[30, 20]`
accesses the element at row 30, column 20. While this expression may
not surprise you,
`data[0, 0]`
might.
Programming languages like Fortran, MATLAB and R start counting at 1
because that's what human beings have done for thousands of years.
Languages in the C family (including C++, Java, Perl, and Python) count from 0
because it represents an offset from the first value in the array (the second
value is offset by one index from the first value). This is closer to the way
that computers represent arrays (if you are interested in the historical
reasons behind counting indices from zero, you can read
[
Mike Hoye's blog post
](
http://exple.tive.org/blarg/2013/10/22/citation-needed/
)
).
As a result,
if we have an M×N array in Python,
its indices go from 0 to M-1 on the first axis
and 0 to N-1 on the second.
It takes a bit of getting used to,
but one way to remember the rule is that
the index is how many steps we have to take from the start to get the item we want.

> ## In the Corner
>
> What may also surprise you is that when Python displays an array,
> it shows the element with index `[0, 0]` in the upper left corner
> rather than the lower left.
> This is consistent with the way mathematicians draw matrices
> but different from the Cartesian coordinates.
> The indices are (row, column) instead of (column, row) for the same reason,
> which can be confusing when plotting data.
{: .callout}
## Slicing data
An index like
`[30, 20]`
selects a single element of an array,
but we can select whole sections as well.
For example,
we can select the first ten days (columns) of values
for the first four patients (rows) like this:
~~~
print(data[0:4, 0:10])
~~~
{: .language-python}
~~~
[[ 0. 0. 1. 3. 1. 2. 4. 7. 8. 3.]
[ 0. 1. 2. 1. 2. 1. 3. 2. 2. 6.]
[ 0. 1. 1. 3. 3. 2. 6. 2. 5. 9.]
[ 0. 0. 2. 0. 4. 2. 2. 1. 6. 7.]]
~~~
{: .output}
The
[
slice
](
{{
page.root }}/reference/#slice)
`0:4`
means, "Start at index 0 and go up to, but not
including, index 4."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.
We don't have to start slices at 0:
~~~
print(data[5:10, 0:10])
~~~
{: .language-python}
~~~
[[ 0. 0. 1. 2. 2. 4. 2. 1. 6. 4.]
[ 0. 0. 2. 2. 4. 2. 2. 5. 5. 8.]
[ 0. 0. 1. 2. 3. 1. 2. 3. 5. 3.]
[ 0. 0. 0. 3. 1. 5. 6. 5. 5. 8.]
[ 0. 1. 1. 2. 1. 3. 5. 3. 5. 8.]]
~~~
{: .output}
We also don't have to include the upper and lower bound on the slice. If we don't include the lower
bound, Python uses 0 by default; if we don't include the upper, the slice runs to the end of the
axis, and if we don't include either (i.e., if we use ':' on its own), the slice includes
everything:
~~~
small = data[:3, 36:]
print('small is:')
print(small)
~~~
{: .language-python}
The above example selects rows 0 through 2 and columns 36 through to the end of the array.
~~~
small is:
[[ 2. 3. 0. 0.]
[ 1. 1. 0. 1.]
[ 2. 2. 1. 1.]]
~~~
{: .output}
## Analyzing data
NumPy has several useful functions that take an array as input to perform operations on its values.
If we want to find the average inflammation for all patients on
all days, for example, we can ask NumPy to compute
`data`
's mean value:
~~~
print(numpy.mean(data))
~~~
{: .language-python}
~~~
6.14875
~~~
{: .output}
`mean`
is a
[
function
](
{{
page.root }}/reference/#function) that takes
an array as an
[
argument
](
{{
page.root }}/reference/#argument).
> ## Not All Functions Have Input
>
> Generally, a function uses inputs to produce outputs.
> However, some functions produce outputs without
> needing any input. For example, checking the current time
> doesn't require any input.
>
> ~~~
> import time
> print(time.ctime())
> ~~~
> {: .language-python}
>
> ~~~
> Sat Mar 26 13:07:33 2016
> ~~~
> {: .output}
>
> For functions that don't take in any arguments,
> we still need parentheses (`()`)
> to tell Python to go and do something for us.
{: .callout}
Let's use three other NumPy functions to get some descriptive values about the dataset.
We'll also use multiple assignment,
a convenient Python feature that will enable us to do this all in one line.
~~~
maxval, minval, stdval = numpy.max(data), numpy.min(data), numpy.std(data)
print('maximum inflammation:', maxval)
print('minimum inflammation:', minval)
print('standard deviation:', stdval)
~~~
{: .language-python}
Here we've assigned the return value from
`numpy.max(data)`
to the variable
`maxval`
, the value
from
`numpy.min(data)`
to
`minval`
, and so on.
~~~
maximum inflammation: 20.0
minimum inflammation: 0.0
standard deviation: 4.61383319712
~~~
{: .output}
> ## Mystery Functions in IPython
>
> How did we know what functions NumPy has and how to use them?
> If you are working in IPython or in a Jupyter Notebook, there is an easy way to find out.
> If you type the name of something followed by a dot, then you can use tab completion
> (e.g. type `numpy.` and then press tab)
> to see a list of all functions and attributes that you can use. After selecting one, you
> can also add a question mark (e.g. `numpy.cumprod?`), and IPython will return an
> explanation of the method! This is the same as doing `help(numpy.cumprod)`.
> Similarly, if you are using the "plain vanilla" Python interpreter, you can type `numpy.`
> and press the <kbd>Tab</kbd> key twice for a listing of what is available. You can then use the
> `help()` function to see an explanation of the function you're interested in,
> for example: `help(numpy.cumprod)`.
{: .callout}
When analyzing data, though,
we often want to look at variations in statistical values,
such as the maximum inflammation per patient
or the average inflammation per day.
One way to do this is to create a new temporary array of the data we want,
then ask it to do the calculation:
~~~
patient_0 = data[0, :] # 0 on the first axis (rows), everything on the second (columns)
print('maximum inflammation for patient 0:', numpy.max(patient_0))
~~~
{: .language-python}
~~~
maximum inflammation for patient 0: 18.0
~~~
{: .output}
Everything in a line of code following the '#' symbol is a
[
comment
](
{{
page.root }}/reference/#comment) that is ignored by Python.
Comments allow programmers to leave explanatory notes for other
programmers or their future selves.
We don't actually need to store the row in a variable of its own.
Instead, we can combine the selection and the function call:
~~~
print('maximum inflammation for patient 2:', numpy.max(data[2, :]))
~~~
{: .language-python}
~~~
maximum inflammation for patient 2: 19.0
~~~
{: .output}
What if we need the maximum inflammation for each patient over all days (as in the
next diagram on the left) or the average for each day (as in the
diagram on the right)? As the diagram below shows, we want to perform the
operation across an axis:

To support this functionality,
most array functions allow us to specify the axis we want to work on.
If we ask for the average across axis 0 (rows in our 2D example),
we get:
~~~
print(numpy.mean(data, axis=0))
~~~
{: .language-python}
~~~
[ 0. 0.45 1.11666667 1.75 2.43333333 3.15
3.8 3.88333333 5.23333333 5.51666667 5.95 5.9
8.35 7.73333333 8.36666667 9.5 9.58333333
10.63333333 11.56666667 12.35 13.25 11.96666667
11.03333333 10.16666667 10. 8.66666667 9.15 7.25
7.33333333 6.58333333 6.06666667 5.95 5.11666667 3.6
3.3 3.56666667 2.48333333 1.5 1.13333333
0.56666667]
~~~
{: .output}
As a quick check,
we can ask this array what its shape is:
~~~
print(numpy.mean(data, axis=0).shape)
~~~
{: .language-python}
~~~
(40,)
~~~
{: .output}
The expression
`(40,)`
tells us we have an N×1 vector,
so this is the average inflammation per day for all patients.
If we average across axis 1 (columns in our 2D example), we get:
~~~
print(numpy.mean(data, axis=1))
~~~
{: .language-python}
~~~
[ 5.45 5.425 6.1 5.9 5.55 6.225 5.975 6.65 6.625 6.525
6.775 5.8 6.225 5.75 5.225 6.3 6.55 5.7 5.85 6.55
5.775 5.825 6.175 6.1 5.8 6.425 6.05 6.025 6.175 6.55
6.175 6.35 6.725 6.125 7.075 5.725 5.925 6.15 6.075 5.75
5.975 5.725 6.3 5.9 6.75 5.925 7.225 6.15 5.95 6.275 5.7
6.1 6.825 5.975 6.725 5.7 6.25 6.4 7.05 5.9 ]
~~~
{: .output}
which is the average inflammation per patient across all days.
## Visualizing data
## Visualizing data
The mathematician Richard Hamming once said, "The purpose of computing is insight, not numbers," and
The mathematician Richard Hamming once said, "The purpose of computing is insight, not numbers," and
the best way to develop insight is often to visualize data. Visualization deserves an entire
the best way to develop insight is often to visualize data. Visualization deserves an entire
...
@@ -603,74 +119,6 @@ and that we want a tight layout.
...
@@ -603,74 +119,6 @@ and that we want a tight layout.
the graphs will actually be squeezed together more closely.)
the graphs will actually be squeezed together more closely.)
> ## Slicing Strings
>
> A section of an array is called a [slice]({{ page.root }}/reference/#slice).
> We can take slices of character strings as well:
>
> ~~~
> element = 'oxygen'
> print('first three characters:', element[0:3])
> print('last three characters:', element[3:6])
> ~~~
> {: .language-python}
>
> ~~~
> first three characters: oxy
> last three characters: gen
> ~~~
> {: .output}
>
> What is the value of `element[:4]`?
> What about `element[4:]`?
> Or `element[:]`?
>
> > ## Solution
> > ~~~
> > oxyg
> > en
> > oxygen
> > ~~~
> > {: .output}
> {: .solution}
>
> What is `element[-1]`?
> What is `element[-2]`?
>
> > ## Solution
> > ~~~
> > n
> > e
> > ~~~
> > {: .output}
> {: .solution}
>
> Given those answers,
> explain what `element[1:-1]` does.
>
> > ## Solution
> > Creates a substring from index 1 up to (not including) the final index,
> > effectively removing the first and last letters from 'oxygen'
> {: .solution}
{: .challenge}
> ## Thin Slices
>
> The expression `element[3:3]` produces an [empty string]({{ page.root }}/reference/#empty-string),
> i.e., a string that contains no characters.
> If `data` holds our array of patient data,
> what does `data[3:3, 4:4]` produce?
> What about `data[3:3, :]`?
>
> > ## Solution
> > ~~~
> > array([], shape=(0, 0), dtype=float64)
> > array([], shape=(0, 40), dtype=float64)
> > ~~~
> > {: .output}
> {: .solution}
{: .challenge}
> ## Plot Scaling
> ## Plot Scaling
>
>
> Why do all of our plots stop just short of the upper end of our graph?
> Why do all of our plots stop just short of the upper end of our graph?
...
@@ -805,200 +253,4 @@ the graphs will actually be squeezed together more closely.)
...
@@ -805,200 +253,4 @@ the graphs will actually be squeezed together more closely.)
> {: .solution}
> {: .solution}
{: .challenge}
{: .challenge}
> ## Stacking Arrays
>
> Arrays can be concatenated and stacked on top of one another,
> using NumPy's `vstack` and `hstack` functions for vertical and horizontal stacking, respectively.
>
> ~~~
> import numpy
>
> A = numpy.array([[1,2,3], [4,5,6], [7, 8, 9]])
> print('A = ')
> print(A)
>
> B = numpy.hstack([A, A])
> print('B = ')
> print(B)
>
> C = numpy.vstack([A, A])
> print('C = ')
> print(C)
> ~~~
> {: .language-python}
>
> ~~~
> A =
> [[1 2 3]
> [4 5 6]
> [7 8 9]]
> B =
> [[1 2 3 1 2 3]
> [4 5 6 4 5 6]
> [7 8 9 7 8 9]]
> C =
> [[1 2 3]
> [4 5 6]
> [7 8 9]
> [1 2 3]
> [4 5 6]
> [7 8 9]]
> ~~~
> {: .output}
>
> Write some additional code that slices the first and last columns of `A`,
> and stacks them into a 3x2 array.
> Make sure to `print` the results to verify your solution.
>
> > ## Solution
> >
> > A 'gotcha' with array indexing is that singleton dimensions
> > are dropped by default. That means `A[:, 0]` is a one dimensional