Python Scientific
Python Scientific
Index 379
i
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Part I
1 2
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Specifications Some software are dedicated to one domain. Ex: Gnuplot or xmgrace to draw curves. These programs
are very powerful, but they are restricted to a single type of usage, such as plotting.
Rich collection of already existing bricks corresponding to classical numerical methods or basic actions: we What about Python?
dont want to re-program the plotting of a curve, a Fourier transform or a fitting algorithm. Dont reinvent
the wheel! Advantages:
Easy to learn: computer science is neither our job nor our education. We want to be able to draw a curve, Very rich scientific computing libraries (a bit less than Matlab, though)
smooth a signal, do a Fourier transform in a few minutes. Well thought out language, allowing to write very readable and well structured code: we code what
Easy communication with collaborators, students, customers, to make the code live within a lab or a com- we think.
pany: the code should be as readable as a book. Thus, the language should contain as few syntax symbols or Many libraries for other tasks than scientific computing (web server management, serial port access,
unneeded routines as possible that would divert the reader from the mathematical or scientific understanding etc.)
of the code.
Free and open-source software, widely spread, with a vibrant community.
Efficient code that executes quickly... but needless to say that a very fast code becomes useless if we spend
too much time writing it. So, we need both a quick development time and a quick execution time. Drawbacks:
A single environment/language for everything, if possible, to avoid learning a new software for each new less pleasant development environment than, for example, Matlab. (More geek-oriented).
problem. Not all the algorithms that can be found in more specialized software or toolboxes.
1.1.2 Scientific Python building blocks 1.1.3 The interactive workflow: IPython and a text editor
Unlike Matlab, Scilab or R, Python does not come with a pre-bundled set of modules for scientific computing. Interactive work to test and understand algorithms: In this section, we describe an interactive workflow with
Below are the basic building blocks that can be combined to obtain a scientific computing environment: IPython that is handy to explore and understand algorithms.
Python, a generic and modern computing language Python is a general-purpose language. As such, there is not one blessed environment to work in, and not only one
way of using it. Although this makes it harder for beginners to find their way, it makes it possible for Python to be
Python language: data types (string, int), flow control, data collections (lists, dictionaries), pat-
used to write programs, in web servers, or embedded devices.
terns, etc.
Modules of the standard library.
Reference document for this section:
A large number of specialized modules or applications written in Python: web protocols, web frame-
work, etc. ... and scientific computing. IPython user manual: http://ipython.org/ipython-doc/dev/index.html
Start ipython:
In [1]: print('Hello world')
Hello world
Matplotlib : 2-D visualization, publication-ready plots http://matplotlib.org/ Create a file my_file.py in a text editor. Under EPD (Enthought Python Distribution), you can use Scite,
available from the start menu. Under Python(x,y), you can use Spyder. Under Ubuntu, if you dont already have
your favorite editor, we would advise installing Stanis Python editor. In the file, add the following
lines:
s = 'Hello world'
print(s)
Now, you can run it in IPython and explore the resulting variables:
In [1]: %run my_file.py
Hello world
In [2]: s
Out[2]: 'Hello world'
In [3]: %whos
Variable Type Data/Info
----------------------------
s str Hello world
Mayavi : 3-D visualization http://code.enthought.com/projects/mayavi/
1.1. Scientific computing with tools and workflow 5 1.1. Scientific computing with tools and workflow 6
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
In [8]: debug
From a script to functions > /.../IPython/core/compilerop.py (87)ast_parse()
86 and are passed to the built-in compile function."""
While it is tempting to work only with scripts, that is a file full of instructions following each other, do plan ---> 87 return compile(source, filename, symbol, self.flags | PyCF_ONLY_AST, 1)
to progressively evolve the script to a set of functions: 88
A script is not reusable, functions are.
Thinking in terms of functions helps breaking the problem in small blocks. ipdb>locals()
{'source': u'x === 10\n', 'symbol': 'exec', 'self':
<IPython.core.compilerop.CachingCompiler instance at 0x2ad8ef0>,
'filename': '<ipython-input-6-12fd421b5f28>'}
IPython Tips and Tricks
The IPython user manual contains a wealth of information about using IPython, but to get you started we want to IPython help
give you a quick introduction to four useful features: history, magic functions, aliases and tab completion.
The built-in IPython cheat-sheet is accessible via the %quickref magic function.
Like a UNIX shell, IPython supports command history. Type up and down to navigate previously typed commands: A list of all available magic functions is shown when typing %magic.
In [1]: x = 10
Furthermore IPython ships with various aliases which emulate common UNIX command line tools such as ls to
In [2]: <UP> list files, cp to copy files and rm to remove files. A list of aliases is shown when typing alias:
In [2]: x = 10 In [1]: alias
Total number of aliases: 16
IPython supports so called magic functions by prefixing a command with the % character. For example, the run Out[1]:
and whos functions from the previous section are magic functions. Note that, the setting automagic, which is [('cat', 'cat'),
enabled by default, allows you to omit the preceding % sign. Thus, you can just type the magic function and it will ('clear', 'clear'),
work. ('cp', 'cp -i'),
('ldir', 'ls -F -o --color %l | grep /$'),
Other useful magic functions are: ('less', 'less'),
('lf', 'ls -F -o --color %l | grep ^-'),
%cd to change the current directory.
('lk', 'ls -F -o --color %l | grep ^l'),
In [2]: cd /tmp ('ll', 'ls -F -o --color'),
/tmp ('ls', 'ls -F --color'),
('lx', 'ls -F -o --color %l | grep ^-..x'),
%timeit allows you to time the execution of short snippets using the timeit module from the standard ('man', 'man'),
library: ('mkdir', 'mkdir'),
('more', 'more'),
In [3]: timeit x = 10 ('mv', 'mv -i'),
10000000 loops, best of 3: 39 ns per loop ('rm', 'rm -i'),
('rmdir', 'rmdir')]
%cpaste allows you to paste code, especially code from websites which has been prefixed with the stan-
dard Python prompt (e.g. >>>) or with an ipython prompt, (e.g. in [3]): Lastly, we would like to mention the tab completion feature, whose description we cite directly from the IPython
manual:
In [5]: cpaste
Pasting code; enter '--' alone on the line to stop or use Ctrl-D. Tab completion, especially for attributes, is a convenient way to explore the structure of any object youre dealing
:In [3]: timeit x = 10 with. Simply type object_name.<TAB> to view the objects attributes. Besides Python objects and keywords, tab
:-- completion also works on file and directory names.
10000000 loops, best of 3: 85.9 ns per loop
In [6]: cpaste In [1]: x = 10
Pasting code; enter '--' alone on the line to stop or use Ctrl-D.
:>>> timeit x = 10 In [2]: x.<TAB>
:-- x.bit_length x.conjugate x.denominator x.imag x.numerator
10000000 loops, best of 3: 86 ns per loop x.real
%debug allows you to enter post-mortem debugging. That is to say, if the code you try to execute, raises In [3]: x.real.
an exception, using %debug will enter the debugger at the point where the exception was thrown. x.real.bit_length x.real.denominator x.real.numerator
x.real.conjugate x.real.imag x.real.real
In [7]: x === 10
File "<ipython-input-6-12fd421b5f28>", line 1 In [4]: x.real.
x === 10
^
SyntaxError: invalid syntax
1.1. Scientific computing with tools and workflow 7 1.1. Scientific computing with tools and workflow 8
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Integer
1.2.1 First steps >>> 1 + 1
2
Start the Ipython shell (an enhanced interactive Python shell): >>> a = 4
>>> type(a)
by typing ipython from a Linux/Mac terminal, or from the Windows cmd shell, <type 'int'>
or by starting the program from a menu, e.g. in the Python(x,y) or EPD menu if you have installed one of
these scientific-Python suites. Floats
>>> c = 2.1
Tip: If you dont have Ipython installed on your computer, other Python shells are available, such as the plain >>> type(c)
Python shell started by typing python in a terminal, or the Idle interpreter. However, we advise to use the Ipython <type 'float'>
shell because of its enhanced features, especially for interactive scientific computing.
Complex
Once you have started the interpreter, type >>> a = 1.5 + 0.5j
>>> a.real
Booleans In Python 3:
>>> a = 3
Tip: A Python shell can therefore replace your pocket calculator, with the basic arithmetic operations +, -, *, /, >>> b = 2
% (modulo) natively implemented >>> a / b # In Python 2
1
>>> 7 * 3. >>> a / float(b)
21.0 1.5
>>> 2**10
Future behavior: to always get the behavior of Python3
1024
>>> 8 % 3
>>> from __future__ import division
2
>>> 3 / 2
1.5
Type conversion (casting):
>>> float(1)
1.0 Tip: If you explicitly want integer division use //:
>>> 3.0 // 2
1.0
Containers
Tip: Python provides many efficient types of containers, in which collections of objects can be stored.
Lists
Tip: A list is an ordered collection of objects, that may have different types. For example:
Warning: Note that l[start:stop] contains the elements with indices i such as start<= i < stop Reverse:
(i ranging from start to stop-1). Therefore, l[start:stop] has (stop - start) elements.
>>> r = L[::-1]
>>> r
Slicing syntax: l[start:stop:stride] ['white', 'black', 'green', 'blue', 'red']
>>> r2 = list(L)
Tip: All slicing parameters are optional: >>> r2
['red', 'blue', 'green', 'black', 'white']
>>> l
>>> r2.reverse() # in-place
['red', 'blue', 'green', 'black', 'white']
>>> r2
>>> l[3:]
['white', 'black', 'green', 'blue', 'red']
['black', 'white']
>>> l[:3]
['red', 'blue', 'green']
Concatenate and repeat lists:
>>> l[::2] >>> r + L
['red', 'green', 'white'] ['white', 'black', 'green', 'blue', 'red', 'red', 'blue', 'green', 'black', 'white']
>>> r * 2
['white', 'black', 'green', 'blue', 'red', 'white', 'black', 'green', 'blue', 'red']
Lists are mutable objects and can be modified:
>>> l[0] = 'yellow' Tip: Sort:
>>> l
['yellow', 'blue', 'green', 'black', 'white'] >>> sorted(r) # new object
>>> l[2:4] = ['gray', 'purple'] ['black', 'blue', 'green', 'red', 'white']
>>> l >>> r
['yellow', 'blue', 'gray', 'purple', 'white'] ['white', 'black', 'green', 'blue', 'red']
>>> r.sort() # in-place
>>> r
Note: The elements of a list may have different types: ['black', 'blue', 'green', 'red', 'white']
>>> l = [3, -200, 'hello']
>>> l
[3, -200, 'hello']
>>> l[1], l[2] Methods and Object-Oriented Programming
(-200, 'hello') The notation r.method() (e.g. r.append(3) and L.pop()) is our first example of object-oriented
programming (OOP). Being a list, the object r owns the method function that is called using the
Tip: For collections of numerical data that all have the same type, it is often more efficient to use the array notation .. No further knowledge of OOP than understanding the notation . is necessary for going through
type provided by the numpy module. A NumPy array is a chunk of memory containing fixed-sized items. With this tutorial.
NumPy arrays, operations on elements can be faster because elements are regularly spaced in memory and more
operations are performed through specialized C functions instead of Python loops.
Tip: Python offers a large panel of functions to modify lists, or query them. Here are a few examples; for more
details, see http://docs.python.org/tutorial/datastructures.html#more-on-lists
Tip: Strings have many useful methods, such as a.replace as seen above. Remember the a. object-oriented
Different string syntaxes (simple, double or triple quotes): notation and use tab completion or help(str) to search for new methods.
s = 'Hello, how are you?'
s = "Hi, what's up" See also:
s = '''Hello, # tripling the quotes allows the
how are you''' # the string to span more than one line Python offers advanced possibilities for manipulating strings, looking for patterns or formatting.
s = """Hi, The interested reader is referred to http://docs.python.org/library/stdtypes.html#string-methods and
what's up?""" http://docs.python.org/library/string.html#new-string-formatting
String formatting:
In [1]: 'Hi, what's up?'
------------------------------------------------------------ >>> 'An integer: %i; a float: %f; another string: %s' % (1, 0.1, 'string')
File "<ipython console>", line 1 'An integer: 1; a float: 0.100000; another string: string'
'Hi, what's up?'
^ >>> i = 102
SyntaxError: invalid syntax >>> filename = 'processing_of_dataset_%d.txt' % i
>>> filename
The newline character is \n, and the tab character is \t. 'processing_of_dataset_102.txt'
Tip: Strings are collections like lists. Hence they can be indexed and sliced, using the same syntax and rules.
Dictionaries
Indexing:
>>> a = "hello" Tip: A dictionary is basically an efficient table that maps keys to values. It is an unordered container
>>> a[0]
'h'
>>> tel = {'emmanuelle': 5752, 'sebastian': 5578}
>>> a[1]
>>> tel['francis'] = 5915
'e'
>>> tel
>>> a[-1]
{'sebastian': 5578, 'francis': 5915, 'emmanuelle': 5752}
'o'
>>> tel['sebastian']
5578
Tip: (Remember that negative indices correspond to counting from the right end.) >>> tel.keys()
['sebastian', 'francis', 'emmanuelle']
Slicing: >>> tel.values()
[5578, 5915, 5752]
>>> a = "hello, world!" >>> 'francis' in tel
>>> a[3:6] # 3rd to 6th (excluded) elements: elements 3, 4, 5 True
'lo,'
Tip: It can be used to conveniently store and retrieve values associated with a name (a string for a date, a name, In [1]: a = [1, 2, 3]
etc.). See http://docs.python.org/tutorial/datastructures.html#dictionaries for more information. In [3]: a
A dictionary can have keys (resp. values) with different types: Out[3]: [1, 2, 3]
In [4]: a = ['a', 'b', 'c'] # Creates another object.
>>> d = {'a':1, 'b':2, 3:'hello'} In [5]: a
>>> d Out[5]: ['a', 'b', 'c']
{'a': 1, 3: 'hello', 'b': 2} In [6]: id(a)
Out[6]: 138641676
In [7]: a[:] = [1, 2, 3] # Modifies object in place.
In [8]: a
More container types Out[8]: [1, 2, 3]
In [9]: id(a)
Out[9]: 138641676 # Same as in Out[6], yours will differ...
Tuples
Tuples are basically immutable lists. The elements of a tuple are written between parentheses, or just separated the key concept here is mutable vs. immutable
by commas: mutable objects can be changed in place
>>> t = 12345, 54321, 'hello!'
immutable objects cannot be modified once created
>>> t[0]
12345 See also:
>>> t
(12345, 54321, 'hello!') A very good and detailed explanation of the above issues can be found in David M. Beazleys article Types and
>>> u = (0, 2) Objects in Python.
>>> if 2**2 == 4:
Assignment operator ... print('Obvious!')
...
Obvious!
Tip: Python library reference says:
Assignment statements are used to (re)bind names to values and to modify attributes or items of Blocks are delimited by indentation
mutable objects.
Tip: Type the following lines in your Python interpreter, and be careful to respect the indentation depth. The
In short, it works as follows (simple assignment): Ipython shell automatically increases the indentation depth after a column : sign; to decrease the indentation
1. an expression on the right hand side is evaluated, the corresponding object is created/obtained depth, go four spaces to the left with the Backspace key. Press the Enter key twice to leave the logical block.
2. a name on the left hand side is assigned, or bound, to the r.h.s. object
>>> a = 10
if <OBJECT> Tip: Few languages (in particular, languages for scientific computing) allow to loop over anything but inte-
gers/indices. With Python it is possible to loop exactly over the objects of interest without bothering with indices
Evaluates to False: you often dont care about. This feature can often be used to make code more readable.
any number equal to zero (0, 0.0, 0+0j)
an empty container (list, tuple, set, dictionary, ...) Warning: Not safe to modify the sequence you are iterating over.
False, None
Evaluates to True: Keeping track of enumeration number
everything else
a == b Tests equality, with logics: Common task is to iterate over a sequence while keeping track of the item number.
Could use while loop with a counter as above. Or a for loop: Warning: Function blocks must be indented as other control-flow blocks.
>>> words = ('cool', 'powerful', 'readable')
>>> for i in range(0, len(words)):
... print((i, words[i]))
(0, 'cool') Return statement
(1, 'powerful')
(2, 'readable') Functions can optionally return values.
In [6]: def disk_area(radius):
But, Python provides a built-in function - enumerate - for this:
...: return 3.14 * radius * radius
>>> for index, item in enumerate(words): ...:
... print((index, item))
(0, 'cool') In [8]: disk_area(1.5)
(1, 'powerful') Out[8]: 7.0649999999999995
(2, 'readable')
Note: By default, functions return None.
Looping over a dictionary
Note: Note the syntax to define a function:
Use items: the def keyword;
>>> d = {'a': 1, 'b':1.2, 'c':1j} is followed by the functions name, then
>>> for key, val in sorted(d.items()): the arguments of the function are given between parentheses followed by a colon.
... print('Key: %s has value: %s' % (key, val)) the function body;
Key: a has value: 1
Key: b has value: 1.2 and return object for optionally returning values.
Key: c has value: 1j
Note: The ordering of a dictionary in random, thus we use sorted() which will sort on the keys. Parameters
Warning: Default values are evaluated when the function is defined, not when it is called. This can be In [107]: slicer(rhyme, step=2, start=1, stop=4)
problematic when using mutable types (e.g. dictionary or list) and modifying them in the function body, since Out[107]: ['fish,', 'fish,']
the modifications will be persistent across invocations of the function.
Using an immutable type in a keyword argument: but it is good practice to use the same ordering as the functions definition.
In [124]: bigx = 10 Keyword arguments are a very convenient feature for defining functions with a variable number of arguments,
especially when default values are to be used in most calls to the function.
In [125]: def double_it(x=bigx):
.....: return x * 2
.....: Passing by value
In [126]: bigx = 1e9 # Now really big
Tip: Can you modify the value of a variable inside a function? Most languages (C, Java, ...) distinguish passing
In [128]: double_it() by value and passing by reference. In Python, such a distinction is somewhat artificial, and it is a bit subtle
Out[128]: 20 whether your variables are going to be modified or not. Fortunately, there exist clear rules.
Using an mutable type in a keyword argument (and modifying it inside the function body): Parameters to functions are references to objects, which are passed by value. When you pass a variable to a
function, python passes the reference to the object to which the variable refers (the value). Not the variable itself.
In [2]: def add_to_dict(args={'a': 1, 'b': 2}):
...: for i in args.keys():
If the value passed in a function is immutable, the function does not modify the callers variable. If the value is
...: args[i] += 1
mutable, the function may modify the callers variable in-place:
...: print args
...: >>> def try_to_modify(x, y, z):
... x = 23
In [3]: add_to_dict ... y.append(42)
Out[3]: <function __main__.add_to_dict> ... z = [99] # new reference
... print(x)
In [4]: add_to_dict() ... print(y)
{'a': 2, 'b': 3} ... print(z)
...
In [5]: add_to_dict() >>> a = 77 # immutable variable
{'a': 3, 'b': 4} >>> b = [99] # mutable variable
>>> c = [28]
In [6]: add_to_dict() >>> try_to_modify(a, b, c)
{'a': 4, 'b': 5} 23
[99, 42]
[99]
>>> print(a)
Tip: More involved example implementing pythons slicing:
77
In [98]: def slicer(seq, start=None, stop=None, step=None): >>> print(b)
....: """Implement basic python slicing.""" [99, 42]
....: return seq[start:stop:step] >>> print(c)
....: [28]
In [101]: rhyme = 'one fish, two fish, red fish, blue fish'.split() Functions have a local variable table called a local namespace.
In [102]: rhyme The variable x only exists within the function try_to_modify.
Out[102]: ['one', 'fish,', 'two', 'fish,', 'red', 'fish,', 'blue', 'fish']
1.2.5 Reusing code: scripts and modules Warning: Dont implement option parsing yourself. Use modules such as optparse, argparse or
docopt.
For now, we have typed all instructions in the interpreter. For longer sets of instructions we need to change track
and write the code in text files (using a text editor), that we will call either scripts or modules. Use your favorite
text editor (provided it offers syntax highlighting for Python), or the editor that comes with the Scientific Python
Suite you may be using (e.g., Scite with Python(x,y)).
Importing objects from modules
In [2]: os
Tip: Let us first write a script, that is a file with a sequence of instructions that are executed each time the script Out[2]: <module 'os' from '/usr/lib/python2.6/os.pyc'>
is called. Instructions may be e.g. copied-and-pasted from the interpreter (but take care to respect indentation
rules!). In [3]: os.listdir('.')
Out[3]:
The extension for Python files is .py. Write or copy-and-paste the following lines in a file called test.py ['conf.py',
'basic_types.rst',
message = "Hello how are you?" 'control_flow.rst',
for word in message.split(): 'functions.rst',
print word 'python_language.rst',
'reusing.rst',
'file_io.rst',
Tip: Let us now execute the script interactively, that is inside the Ipython interpreter. This is maybe the most 'exceptions.rst',
common use of scripts in scientific computing.
'workflow.rst',
'index.rst']
Note: in Ipython, the syntax to execute a script is %run script.py. For example,
And also:
In [4]: demo?
Type: module
Base Class: <type 'module'>
__main__ and module loading
String Form: <module 'demo' from 'demo.py'>
Namespace: Interactive
File: /home/varoquau/Projects/Python_talks/scipy_2009_tutorial/source/demo.py Tip: Sometimes we want code to be executed when a module is run directly, but not when it is imported by another
Docstring: module. if __name__ == __main__ allows us to check whether the module is being run directly.
A demo module.
File demo2.py:
In [5]: who def print_b():
demo "Prints b."
print 'b'
In [6]: whos
Variable Type Data/Info def print_a():
------------------------------ "Prints a."
demo module <module 'demo' from 'demo.py'> print 'a'
if __name__ == '__main__': or modify the sys.path variable itself within a Python script.
# print_a() is only executed when the module is run directly.
print_a() Tip:
import sys
Importing it: new_path = '/home/emma/user_defined_modules'
In [11]: import demo2 if new_path not in sys.path:
b sys.path.append(new_path)
In [12]: import demo2 This method is not very robust, however, because it makes the code less portable (user-dependent path) and
because you have to add the directory to your sys.path each time you want to import from a module in this
Running it: directory.
In [13]: %run demo2
b See also:
a See http://docs.python.org/tutorial/modules.html for more information about modules.
A directory that contains many modules is called a package. A package is a module with submodules (which can
Note: Rule of thumb
have submodules themselves, etc.). A special file called __init__.py (which may be empty) tells Python that
Sets of instructions that are called several times should be written inside functions for better code reusability. the directory is a Python package, from which modules can be imported.
Functions (or other bits of code) that are called from several scripts should be written inside a module, $ ls
so that only the module is imported in the different scripts (do not copy-and-paste your functions in the cluster/ io/ README.txt@ stsci/
different scripts!). __config__.py@ LATEST.txt@ setup.py@ __svn_version__.py@
__config__.pyc lib/ setup.pyc __svn_version__.pyc
constants/ linalg/ setupscons.py@ THANKS.txt@
fftpack/ linsolve/ setupscons.pyc TOCHANGE.txt@
How modules are found and imported
__init__.py@ maxentropy/ signal/ version.py@
__init__.pyc misc/ sparse/ version.pyc
When the import mymodule statement is executed, the module mymodule is searched in a given list of INSTALL.txt@ ndimage/ spatial/ weave/
directories. This list includes a list of installation-dependent default path (e.g., /usr/lib/python) as well as integrate/ odr/ special/
the list of directories specified by the environment variable PYTHONPATH. interpolate/ optimize/ stats/
$ cd ndimage
The list of directories searched by Python is given by the sys.path variable $ ls
doccer.py@ fourier.pyc interpolation.py@ morphology.pyc setup.pyc
In [1]: import sys
doccer.pyc info.py@ interpolation.pyc _nd_image.so
setupscons.py@
In [2]: sys.path
filters.py@ info.pyc measurements.py@ _ni_support.py@
Out[2]:
setupscons.pyc
['',
filters.pyc __init__.py@ measurements.pyc _ni_support.pyc tests/
'/home/varoquau/.local/bin',
fourier.py@ __init__.pyc morphology.py@ setup.py@
'/usr/lib/python2.7',
'/home/varoquau/.local/lib/python2.7/site-packages',
From Ipython:
'/usr/lib/python2.7/dist-packages',
'/usr/local/lib/python2.7/dist-packages', In [1]: import scipy
...]
In [2]: scipy.__file__
Modules must be located in the search path, therefore you can: Out[2]: '/usr/lib/python2.6/dist-packages/scipy/__init__.pyc'
write your own modules within directories already defined in the search path (e.g.
In [3]: import scipy.version
$HOME/.local/lib/python2.7/dist-packages). You may use symbolic links (on Linux) to
keep the code somewhere else. In [4]: scipy.version.version
modify the environment variable PYTHONPATH to include the directories containing the user-defined mod- Out[4]: '0.7.0'
ules.
In [5]: import scipy.ndimage.morphology
Tip: On Linux/Unix, add the following line to a file read by the shell at startup (e.g. /etc/profile, .profile) In [6]: from scipy.ndimage import morphology
export PYTHONPATH=$PYTHONPATH:/home/emma/user_defined_modules
In [17]: morphology.binary_dilation?
On Windows, http://support.microsoft.com/kb/310519 explains how to handle environment variables. Type: function
An output array can optionally be provided. The origin parameter 1.2.6 Input and Output
controls the placement of the filter. If no structuring element is
provided an element is generated with a squared connectivity equal To be exhaustive, here are some information about input and output in Python. Since we will use the Numpy
to one. The dilation operation is repeated iterations times. If methods to read and write files, you may skip this chapter at first reading.
iterations is less than 1, the dilation is repeated until the
result does not change anymore. If a mask is given, only those We write or read strings to/from files (other types must be converted to strings). To write in a file:
elements with a true value at the corresponding mask element are
>>> f = open('workfile', 'w') # opens the workfile file
modified at each iteration.
>>> type(f)
<type 'file'>
>>> f.write('This is a test \nand another test')
Good practices >>> f.close()
Tip: Indenting is compulsory in Python! Every command block following a colon bears an additional In [2]: s = f.read()
indentation level with respect to the previous line with a colon. One must therefore indent after def f():
or while:. At the end of such logical blocks, one decreases the indentation depth (and re-increases it if a In [3]: print(s)
new block is entered, etc.) This is a test
and another test
Strict respect of indentation is the price to pay for getting rid of { or ; characters that delineate logical
blocks in other languages. Improper indentation leads to errors such as In [4]: f.close()
------------------------------------------------------------
IndentationError: unexpected indent (test.py, line 2) See also:
For more details: http://docs.python.org/tutorial/inputoutput.html
All this indentation business can be a bit confusing in the beginning. However, with the clear indentation,
and in the absence of extra characters, the resulting code is very nice to read compared to other languages.
Iterating over a file
Indentation depth: Inside your text editor, you may choose to indent with any positive number of spaces
(1, 2, 3, 4, ...). However, it is considered good practice to indent with 4 spaces. You may configure your In [6]: f = open('workfile', 'r')
editor to map the Tab key to a 4-space indentation. In Python(x,y), the editor is already configured this
way. In [7]: for line in f:
...: print line
Style guidelines ...:
This is a test
Long lines: you should not write very long lines that span over more than (e.g.) 80 characters. Long lines
can be broken with the \ character and another test
>>> long_line = "Here is a very very long line \
... that we break in two parts." In [8]: f.close()
Spaces
File modes
Write well-spaced code: put whitespaces after commas, around arithmetic operators, etc.:
>>> a = 1 # yes Read-only: r
>>> a=1 # too cramped
Write-only: w
A certain number of rules for writing beautiful code (and more importantly using the same conventions Note: Create a new file or overwrite existing file.
as anybody else!) are given in the Style Guide for Python Code.
Append a file: a
Read and Write: r+
/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5'
Note: Alternative to os.system
A noteworthy alternative to os.system is the sh module. Which provides much more convenient ways to obtain In [16]: os.getenv('PYTHONPATH')
the output, error stream and exit code of the external command. Out[16]: '.:/Users/cburns/src/utils:/Users/cburns/src/nitools:
/Users/cburns/local/lib/python2.5/site-packages/:
In [20]: import sh /usr/local/lib/python2.5/site-packages/:
In [20]: com = sh.ls() /Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5'
os.path.walk generates a list of filenames in a directory tree. Find all files ending in .txt:
In [18]: import glob
In [10]: for dirpath, dirnames, filenames in os.walk(os.curdir):
....: for fp in filenames:
In [19]: glob.glob('*.txt')
....: print os.path.abspath(fp)
Out[19]: ['holy_grail.txt', 'junk.txt', 'newfile.txt']
....:
....:
/Users/cburns/src/scipy2009/scipy_2009_tutorial/source/.index.rst.swo
/Users/cburns/src/scipy2009/scipy_2009_tutorial/source/.view_array.py.swp sys module: system-specific information
/Users/cburns/src/scipy2009/scipy_2009_tutorial/source/basic_types.rst
/Users/cburns/src/scipy2009/scipy_2009_tutorial/source/conf.py System-specific information related to the Python interpreter.
/Users/cburns/src/scipy2009/scipy_2009_tutorial/source/control_flow.rst
... Which version of python are you running and where is it installed:
In [117]: sys.platform
Out[117]: 'darwin'
Environment variables:
In [118]: sys.version
In [9]: import os Out[118]: '2.5.2 (r252:60911, Feb 22 2008, 07:57:53) \n
[GCC 4.0.1 (Apple Computer, Inc. build 5363)]'
In [11]: os.environ.keys()
Out[11]: In [119]: sys.prefix
['_', Out[119]: '/Library/Frameworks/Python.framework/Versions/2.5'
'FSLDIR',
'TERM_PROGRAM_VERSION', List of command line arguments passed to a Python script:
'FSLREMOTECALL', In [100]: sys.argv
'USER', Out[100]: ['/Users/cburns/local/bin/ipython']
'HOME',
'PATH',
sys.path is a list of strings that specifies the search path for modules. Initialized from PYTHONPATH:
'PS1',
'SHELL', In [121]: sys.path
'EDITOR', Out[121]:
'WORKON_HOME', ['',
'PYTHONPATH', '/Users/cburns/local/bin',
... '/Users/cburns/local/lib/python2.5/site-packages/grin-1.1-py2.5.egg',
'/Users/cburns/local/lib/python2.5/site-packages/argparse-0.8.0-py2.5.egg',
In [12]: os.environ['PYTHONPATH'] '/Users/cburns/local/lib/python2.5/site-packages/urwid-0.9.7.1-py2.5.egg',
Out[12]: '.:/Users/cburns/src/utils:/Users/cburns/src/nitools: '/Users/cburns/local/lib/python2.5/site-packages/yolk-0.4.1-py2.5.egg',
/Users/cburns/local/lib/python2.5/site-packages/: '/Users/cburns/local/lib/python2.5/site-packages/virtualenv-1.2-py2.5.egg',
/usr/local/lib/python2.5/site-packages/: ...
Write a program to search your PYTHONPATH for the module site.py. In [9]: x
Out[9]: 1
path_site
try/finally
1.2.8 Exception handling in Python
In [10]: try:
It is likely that you have raised Exceptions if you have typed all the previous commands of the tutorial. For ....: x = int(raw_input('Please enter a number: '))
example, you may have raised an exception if you entered a command with a typo. ....: finally:
....: print('Thank you for your input')
Exceptions are raised by different kinds of errors arising when executing Python code. In your own code, you ....:
may also catch errors, or define custom error types. You may want to look at the descriptions of the the built-in ....:
Exceptions when looking for the right exception type. Please enter a number: a
Thank you for your input
---------------------------------------------------------------------------
Exceptions ValueError: invalid literal for int() with base 10: 'a'
Exceptions are raised by errors in Python: Important for resource management (e.g. closing a file)
In [1]: 1/0
--------------------------------------------------------------------------- Easier to ask for forgiveness than for permission
ZeroDivisionError: integer division or modulo by zero
In [11]: def print_sorted(collection):
In [2]: 1 + 'e'
....: try:
---------------------------------------------------------------------------
....: collection.sort()
TypeError: unsupported operand type(s) for +: 'int' and 'str'
....: except AttributeError:
....: pass
In [3]: d = {1:1, 2:2}
....: print(collection)
....:
In [4]: d[3]
....:
---------------------------------------------------------------------------
KeyError: 3
In [12]: print_sorted([1, 3, 2])
[1, 2, 3]
In [5]: l = [1, 2, 3]
In [13]: print_sorted(set((1, 3, 2)))
In [6]: l[4]
set([1, 2, 3])
---------------------------------------------------------------------------
IndexError: list index out of range
In [14]: print_sorted('132')
132
In [7]: l.foobar
---------------------------------------------------------------------------
AttributeError: 'list' object has no attribute 'foobar'
Raising exceptions
As you can see, there are different types of exceptions for different errors.
Capturing and reraising an exception:
In [17]: def achilles_arrow(x): The MasterStudent class inherited from the Student attributes and methods.
....: if abs(x - 1) < 1e-3:
....: raise StopIteration Thanks to classes and object-oriented programming, we can organize code with different classes corresponding to
....: x = 1 - (1-x)/2. different objects we encounter (an Experiment class, an Image class, a Flow class, etc.), with their own methods
....: return x and attributes. Then we can use inheritance to consider variations around a base class and re-use code. Ex : from
....: a Flow base class, we can create derived StokesFlow, TurbulentFlow, PotentialFlow, etc.
In [18]: x = 0
In [20]: x
Out[20]: 0.9990234375 1.3.1 The Numpy array object
Use exceptions to notify certain conditions are met (e.g. StopIteration) or not (e.g. custom error raising)
Section contents
1.2.9 Object-oriented programming (OOP) What are Numpy and Numpy arrays? (page 42)
Creating arrays (page 44)
Python supports object-oriented programming (OOP). The goals of OOP are: Basic data types (page 46)
Basic visualization (page 47)
to organize the code, and Indexing and slicing (page 49)
to re-use code in similar contexts. Copies and views (page 52)
Fancy indexing (page 53)
Here is a small example: we create a Student class, which is an object gathering several custom functions (meth-
ods) and variables (attributes), we will be able to use:
>>> class Student(object): What are Numpy and Numpy arrays?
... def __init__(self, name):
... self.name = name
... def set_age(self, age): Numpy arrays
... self.age = age
... def set_major(self, major): Python objects
... self.major = major
... high-level number objects: integers, floating point
>>> anna = Student('anna')
containers: lists (costless insertion and append), dictionaries (fast lookup)
1.2. The Python language 41 1.3. NumPy: creating and manipulating numerical data 42
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Numpy provides
In [6]: np.con* ?
extension package to Python for multi-dimensional arrays np.concatenate
np.conj
closer to hardware (efficiency) np.conjugate
designed for scientific computation (convenience) np.convolve
1.3. NumPy: creating and manipulating numerical data 43 1.3. NumPy: creating and manipulating numerical data 44
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Common arrays: Tip: Different data-types allow us to store data more compactly in memory, but most of the time we simply work
with floating point numbers. Note that, in the example above, NumPy auto-detects the data-type from the input.
>>> a = np.ones((3, 3)) # reminder: (3, 3) is a tuple
>>> a
array([[ 1., 1., 1.],
[ 1., 1., 1.], You can explicitly specify which data-type you want:
[ 1., 1., 1.]])
>>> b = np.zeros((2, 2)) >>> c = np.array([1, 2, 3], dtype=float)
>>> b >>> c.dtype
array([[ 0., 0.], dtype('float64')
[ 0., 0.]])
>>> c = np.eye(3) The default data type is floating point:
>>> c
>>> a = np.ones((3, 3))
array([[ 1., 0., 0.],
>>> a.dtype
[ 0., 1., 0.],
dtype('float64')
[ 0., 0., 1.]])
>>> d = np.diag(np.array([1, 2, 3, 4]))
>>> d There are also other types:
array([[1, 0, 0, 0], Complex
[0, 2, 0, 0],
[0, 0, 3, 0], >>> d = np.array([1+2j, 3+4j, 5+6*1j])
[0, 0, 0, 4]]) >>> d.dtype
dtype('complex128')
np.random: random numbers (Mersenne Twister PRNG):
Bool
>>> a = np.random.rand(4) # uniform in [0, 1]
>>> a >>> e = np.array([True, False, False, True])
array([ 0.95799151, 0.14222247, 0.08777354, 0.51887998]) >>> e.dtype
dtype('bool')
>>> b = np.random.randn(4) # Gaussian
>>> b Strings
array([ 0.37544699, -0.11425369, -0.47616538, 1.79664113])
>>> f = np.array(['Bonjour', 'Hello', 'Hallo',])
>>> np.random.seed(1234) # Setting the random seed >>> f.dtype # <--- strings containing max. 7 letters
dtype('S7')
Much more
int32
int64
uint32
1.3. NumPy: creating and manipulating numerical data 45 1.3. NumPy: creating and manipulating numerical data 46
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
uint64
Basic visualization
9
Now that we have our first data arrays, we are going to visualize them. 8
Start by launching IPython:
$ ipython
7
Or the notebook: 6
$ ipython notebook
5
Once IPython has started, enable interactive plots:
>>> %matplotlib
4
Or, from the notebook, enable plots in the notebook: 3
>>> %matplotlib inline
2
The inline is important for the notebook, so that plots are displayed in the notebook and not in a new window.
Matplotlib is a 2D plotting package. We can import its functions as below: 1
>>> import matplotlib.pyplot as plt
0
# the tidy way
And then use (note that you have to use show explicitly if you have not enabled interactive plots with 0.0 0.5 1.0 1.5 2.0 2.5 3.0
%matplotlib):
>>> plt.plot(x, y) # line plot
2D arrays (such as images):
>>> plt.show() # <-- shows the plot (not needed with interactive plots)
>>> image = np.random.rand(30, 30)
Or, if you have enabled interactive plots with %matplotlib: >>> plt.imshow(image, cmap=plt.cm.hot)
>>> plt.colorbar()
>>> plot(x, y) # line plot <matplotlib.colorbar.Colorbar instance at ...>
1D plotting:
>>> x = np.linspace(0, 3, 20)
>>> y = np.linspace(0, 9, 20)
>>> plt.plot(x, y) # line plot
[<matplotlib.lines.Line2D object at ...>]
>>> plt.plot(x, y, 'o') # dot plot
[<matplotlib.lines.Line2D object at ...>]
1.3. NumPy: creating and manipulating numerical data 47 1.3. NumPy: creating and manipulating numerical data 48
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
>>> a = np.diag(np.arange(3))
>>> a
array([[0, 0, 0],
0 [0, 1, 0],
0.9 [0, 0, 2]])
>>> a[1, 1]
5 0.8 1
>>> a[2, 1] = 10 # third line, second column
>>> a
0.7 array([[ 0, 0, 0],
10 [ 0, 1, 0],
0.6 [ 0, 10, 2]])
>>> a[1]
0.4 Note:
In 2D, the first dimension corresponds to rows, the second to columns.
20 0.3 for multidimensional a, a[0] is interpreted by taking all elements in the unspecified dimensions.
25 0.2 Slicing: Arrays, like other Python sequences can also be sliced:
All three slice components are not required: by default, start is 0, end is the last and step is 1:
Exercise: Simple visualizations
>>> a[1:3]
Plot some simple arrays: a cosine as a function of time and a 2D matrix. array([1, 2])
Try using the gray colormap on the 2D matrix. >>> a[::2]
array([0, 2, 4, 6, 8])
>>> a[3:]
array([3, 4, 5, 6, 7, 8, 9])
Indexing and slicing
A small illustrated summary of Numpy indexing and slicing...
The items of an array can be accessed and assigned to the same way as other Python sequences (e.g. lists):
>>> a = np.arange(10)
>>> a
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> a[0], a[2], a[-1]
(0, 2, 9)
Warning: Indices begin at 0, like other Python sequences (and C/C++). In contrast, in Fortran or Matlab,
indices begin at 1.
1.3. NumPy: creating and manipulating numerical data 49 1.3. NumPy: creating and manipulating numerical data 50
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Try the different flavours of slicing, using start, end and step: starting from a linspace, try to When modifying the view, the original array is modified as well:
obtain odd numbers counting backwards, and even numbers counting forwards. >>> a = np.arange(10)
Reproduce the slices in the diagram above. You may use the following expression to create the array: >>> a
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> np.arange(6) + np.arange(0, 51, 10)[:, np.newaxis]
>>> b = a[::2]
array([[ 0, 1, 2, 3, 4, 5],
>>> b
[10, 11, 12, 13, 14, 15],
array([0, 2, 4, 6, 8])
[20, 21, 22, 23, 24, 25],
>>> np.may_share_memory(a, b)
[30, 31, 32, 33, 34, 35],
True
[40, 41, 42, 43, 44, 45],
>>> b[0] = 12
[50, 51, 52, 53, 54, 55]])
>>> b
array([12, 2, 4, 6, 8])
>>> a # (!)
array([12, 1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> a = np.arange(10)
>>> c = a[::2].copy() # force a copy
>>> c[0] = 12
>>> a
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> np.may_share_memory(a, c)
False
This behavior can be surprising at first sight... but it allows to save both memory and time.
1.3. NumPy: creating and manipulating numerical data 51 1.3. NumPy: creating and manipulating numerical data 52
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Indexing with a mask can be very useful to assign a new value to a sub-array:
>>> a[a % 3 == 0] = -1
>>> a
array([10, -1, 8, -1, 19, 10, 11, -1, 10, -1, -1, 20, -1, 7, 14])
Indexing can be done with an array of integers, where the same index is repeated several time:
>>> a[[2, 3, 2, 4, 2]] # note: [2, 3, 2, 4, 2] is a Python list
array([20, 30, 20, 40, 20])
Compute prime numbers in 099, with a sieve
Construct a shape (100,) boolean array is_prime, filled with True in the beginning: New values can be assigned with this kind of indexing:
Fancy indexing
Tip: Numpy arrays can be indexed with slices, but also with boolean or integer arrays (masks). This method is
called fancy indexing. It creates copies not views.
>>> np.random.seed(3)
>>> a = np.random.random_integers(0, 20, 15)
>>> a
array([10, 3, 8, 0, 19, 10, 11, 9, 10, 6, 0, 20, 12, 7, 14])
>>> (a % 3 == 0)
array([False, True, False, True, False, False, False, True, False,
True, True, False, True, False, False], dtype=bool)
>>> mask = (a % 3 == 0)
1.3. NumPy: creating and manipulating numerical data 53 1.3. NumPy: creating and manipulating numerical data 54
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
>>> a = np.arange(10000)
>>> %timeit a + 1 Logical operations:
10000 loops, best of 3: 24.3 us per loop
>>> a = np.array([1, 1, 0, 0], dtype=bool)
>>> l = range(10000)
>>> b = np.array([1, 0, 1, 0], dtype=bool)
>>> %timeit [i+1 for i in l]
>>> np.logical_or(a, b)
1000 loops, best of 3: 861 us per loop
array([ True, True, True, False], dtype=bool)
>>> np.logical_and(a, b)
array([ True, False, False, False], dtype=bool)
Transcendental functions:
>>> a = np.arange(5)
>>> np.sin(a)
1.3. NumPy: creating and manipulating numerical data 55 1.3. NumPy: creating and manipulating numerical data 56
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Shape mismatches
>>> a = np.arange(4)
>>> a + np.array([1, 2])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: operands could not be broadcast together with shapes (4) (2)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: operands could not be broadcast together with shapes (4) (2)
Broadcasting? Well return to that later (page 62). Sum by rows and by columns:
Transposition: >>> x = np.array([[1, 1], [2, 2]])
>>> a = np.triu(np.ones((3, 3)), 1) # see help(np.triu) >>> x
>>> a array([[1, 1],
array([[ 0., 1., 1.], [2, 2]])
[ 0., 0., 1.], >>> x.sum(axis=0) # columns (first dimension)
[ 0., 0., 0.]]) array([3, 3])
>>> a.T >>> x[:, 0].sum(), x[:, 1].sum()
array([[ 0., 0., 0.], (3, 3)
[ 1., 0., 0.], >>> x.sum(axis=1) # rows (second dimension)
[ 1., 1., 0.]]) array([2, 4])
>>> x[0, :].sum(), x[1, :].sum()
(2, 4)
Warning: The transposition is a view
As a results, the following code is wrong and will not make a matrix symmetric:
Tip: Same idea in higher dimensions:
>>> a += a.T
>>> x = np.random.rand(2, 2, 2)
>>> x.sum(axis=2)[0, 1]
1.14764...
Note: Linear algebra >>> x[0, 1, :].sum()
1.14764...
The sub-module numpy.linalg implements basic linear algebra, such as solving linear systems, singular value
decomposition, etc. However, it is not guaranteed to be compiled using efficient routines, and thus we recommend
the use of scipy.linalg, as detailed in section Linear algebra operations: scipy.linalg (page 105)
Other reductions
Exercise other operations works the same way (and take axis=)
Look at the help for np.allclose. When might this be useful? Extrema:
Look at the help for np.triu and np.tril.
>>> x = np.array([1, 3, 2])
>>> x.min()
1
Basic reductions >>> x.max()
3
Computing sums
>>> x.argmin() # index of minimum
0
>>> x = np.array([1, 2, 3, 4]) >>> x.argmax() # index of maximum
>>> np.sum(x) 1
10
>>> x.sum() Logical operations:
10
>>> np.all([True, True, False])
False
1.3. NumPy: creating and manipulating numerical data 57 1.3. NumPy: creating and manipulating numerical data 58
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
1.3. NumPy: creating and manipulating numerical data 59 1.3. NumPy: creating and manipulating numerical data 60
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Tip: Let us consider a simple 1D random walk process: at each time step a walker jumps right or left with Nevertheless, Its also possible to do operations on arrays of different
equal probability. sizes if Numpy can transform these arrays so that they all have
We are interested in finding the typical distance from the origin of a random walker after t left or right the same size: this conversion is called broadcasting.
jumps? We are going to simulate many walkers to find this law, and we are going to do so using array
computing tricks: we are going to create a 2D array with the stories (each walker has a story) in one The image below gives an example of broadcasting:
direction, and the time in the other:
(x)2
1.3. NumPy: creating and manipulating numerical data 61 1.3. NumPy: creating and manipulating numerical data 62
4
2
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
[ 1., 1., 1., 1., 1.], distance from the origin of points on a 10x10 grid, we can do
[ 1., 1., 1., 1., 1.]]) >>> x, y = np.arange(5), np.arange(5)[:, np.newaxis]
>>> distance = np.sqrt(x ** 2 + y ** 2)
An useful trick: >>> distance
>>> a = np.arange(0, 40, 10) array([[ 0. , 1. , 2. , 3. , 4. ],
>>> a.shape [ 1. , 1.41421356, 2.23606798, 3.16227766, 4.12310563],
(4,) [ 2. , 2.23606798, 2.82842712, 3.60555128, 4.47213595],
>>> a = a[:, np.newaxis] # adds a new axis -> 2D array [ 3. , 3.16227766, 3.60555128, 4.24264069, 5. ],
>>> a.shape [ 4. , 4.12310563, 4.47213595, 5. , 5.65685425]])
(4, 1)
>>> a Or in color:
array([[ 0], >>> plt.pcolor(distance)
[10], >>> plt.colorbar()
[20],
[30]])
>>> a + b
array([[ 0, 1, 2],
[10, 11, 12],
[20, 21, 22],
5 5.4
[30, 31, 32]])
4.8
Tip: Broadcasting seems a bit magical, but it is actually quite natural to use it when we want to solve a problem 4
whose output data is an array with more dimensions than input data. 4.2
3.6
Worked Example: Broadcasting 3
Lets construct an array of distances (in miles) between cities of Route 66: Chicago, Springfield, Saint-Louis, 3.0
Tulsa, Oklahoma City, Amarillo, Santa Fe, Albuquerque, Flagstaff and Los Angeles.
>>> mileposts = np.array([0, 198, 303, 736, 871, 1175, 1475, 1544, 2 2.4
... 1913, 2448])
>>> distance_array = np.abs(mileposts - mileposts[:, np.newaxis])
>>> distance_array
1.8
array([[ 0, 198, 303, 736, 871, 1175, 1475, 1544, 1913, 2448],
[ 198, 0, 105, 538, 673, 977, 1277, 1346, 1715, 2250], 1 1.2
[ 303, 105, 0, 433, 568, 872, 1172, 1241, 1610, 2145],
[ 736, 538, 433,
[ 871, 673, 568, 135,
0, 135, 439, 739, 808, 1177, 1712],
0, 304, 604, 673, 1042, 1577],
0.6
[1175, 977, 872, 439, 304, 0, 300, 369, 738, 1273], 0 0.0
[1475, 1277, 1172, 739, 604, 300,
[1544, 1346, 1241, 808, 673, 369,
0,
69,
69, 438, 973],
0, 369, 904], 0 1 2 3 4 5
[1913, 1715, 1610, 1177, 1042, 738, 438, 369, 0, 535],
[2448, 2250, 2145, 1712, 1577, 1273, 973, 904, 535, 0]])
Remark : the numpy.ogrid function allows to directly create vectors x and y of the previous example, with
two significant dimensions:
>>> x, y = np.ogrid[0:5, 0:5]
>>> x, y
(array([[0],
[1],
[2],
[3],
[4]]), array([[0, 1, 2, 3, 4]]))
>>> x.shape, y.shape
((5, 1), (1, 5))
>>> distance = np.sqrt(x ** 2 + y ** 2)
Tip: So, np.ogrid is very useful as soon as we have to handle computations on a grid. On the other hand,
np.mgrid directly provides matrices full of indices for cases where we cant (or dont want to) benefit from
A lot of grid-based or network-based problems can also use broadcasting. For instance, if we want to compute the broadcasting:
1.3. NumPy: creating and manipulating numerical data 63 1.3. NumPy: creating and manipulating numerical data 64
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Adding a dimension
Array shape manipulation Indexing with the np.newaxis object allows us to add an axis to an array (you have seen this already above in
the broadcasting section):
Flattening
>>> z = np.array([1, 2, 3])
>>> z
>>> a = np.array([[1, 2, 3], [4, 5, 6]]) array([1, 2, 3])
>>> a.ravel()
array([1, 2, 3, 4, 5, 6]) >>> z[:, np.newaxis]
>>> a.T array([[1],
array([[1, 4], [2],
[2, 5], [3]])
[3, 6]])
>>> a.T.ravel() >>> z[np.newaxis, :]
array([1, 4, 2, 5, 3, 6]) array([[1, 2, 3]])
Beware: reshape may also return a copy!: However, it must not be referred to somewhere else:
1.3. NumPy: creating and manipulating numerical data 65 1.3. NumPy: creating and manipulating numerical data 66
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Look at the docstring for reshape, especially the notes section which has some more information What do you need to know to get started?
about copies and views.
Use flatten as an alternative to ravel. What is the difference? (Hint: check which one returns a Know how to create arrays : array, arange, ones, zeros.
view and which a copy) Know the shape of the array with array.shape, then use slicing to obtain different views of the array:
Experiment with transpose for dimension shuffling. array[::2], etc. Adjust the shape of the array using reshape or flatten it with ravel.
Obtain a subset of the elements of an array and/or modify their values with masks
Know miscellaneous operations on arrays, such as finding the mean or max (array.max(),
Sorting along an axis:
array.mean()). No need to retain everything, but have the reflex to search in the documentation (online
>>> a = np.array([[4, 3, 5], [1, 2, 1]]) docs, help(), lookfor())!!
>>> b = np.sort(a, axis=1)
>>> b
For advanced use: master the indexing with arrays of integers, as well as broadcasting. Know more Numpy
array([[3, 4, 5], functions to handle various array operations.
[1, 1, 2]])
Quick read
Note: Sorts each row separately!
If you want to do a first quick pass through the Scipy lectures to learn the ecosystem, you can directly skip
to the next chapter: Matplotlib: plotting (page 81).
In-place sort: The remainder of this chapter is not necessary to follow the rest of the intro part. But be sure to come back
>>> a.sort(axis=1) and finish this chapter, as well as to do some more exercices (page 77).
>>> a
array([[3, 4, 5],
[1, 1, 2]])
1.3.3 More elaborate arrays
Sorting with fancy indexing:
>>> a = np.array([4, 3, 1, 2])
>>> j = np.argsort(a) Section contents
>>> j More data types (page 68)
array([2, 3, 1, 0])
Structured data types (page 70)
>>> a[j]
array([1, 2, 3, 4])
maskedarray: dealing with (propagation of) missing data (page 71)
1.3. NumPy: creating and manipulating numerical data 67 1.3. NumPy: creating and manipulating numerical data 68
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
>>> a = np.array([1.2, 1.5, 1.6, 2.5, 3.5, 4.5]) Complex floating-point numbers:
>>> b = np.around(a)
>>> b # still floating-point complex64 two 32-bit floats
array([ 1., 2., 2., 2., 4., 4.]) complex128 two 64-bit floats
>>> c = np.around(a).astype(int) complex192 two 96-bit floats, platform-dependent
>>> c complex256 two 128-bit floats, platform-dependent
array([1, 2, 2, 2, 4, 4])
Smaller data types
Different data type sizes If you dont know you need special data types, then you probably dont.
Comparison on using float32 instead of float64:
Half the size in memory and on disk
Integers (signed):
Half the memory bandwidth required (may be a bit faster in some operations)
int8 8 bits
In [1]: a = np.zeros((1e6,), dtype=np.float64)
int16 16 bits
int32 32 bits (same as int on 32-bit platform) In [2]: b = np.zeros((1e6,), dtype=np.float32)
int64 64 bits (same as int on 64-bit platform)
In [3]: %timeit a*a
>>> np.array([1], dtype=int).dtype
1000 loops, best of 3: 1.78 ms per loop
dtype('int64')
>>> np.iinfo(np.int32).max, 2**31 - 1
In [4]: %timeit b*b
(2147483647, 2147483647)
1000 loops, best of 3: 1.07 ms per loop
Unsigned integers: But: bigger rounding errors sometimes in surprising places (i.e., dont use them unless you really
need them)
uint8 8 bits
uint16 16 bits
uint32 32 bits
uint64 64 bits Structured data types
>>> np.iinfo(np.uint32).max, 2**32 - 1
(4294967295, 4294967295) sensor_code (4-character string)
position (float)
value (float)
Long integers >>> samples = np.zeros((6,), dtype=[('sensor_code', 'S4'),
Python 2 has a specific type for long integers, that cannot overflow, represented with an L at the end. In ... ('position', float), ('value', float)])
Python 3, all integers are long, and thus cannot overflow. >>> samples.ndim
1
>>> np.iinfo(np.int64).max, 2**63 - 1 >>> samples.shape
(9223372036854775807, 9223372036854775807L) (6,)
>>> samples.dtype.names
('sensor_code', 'position', 'value')
Floating-point numbers:
>>> samples[:] = [('ALFA', 1, 0.37), ('BETA', 1, 0.11), ('TAU', 1, 0.13),
... ('ALFA', 1.5, 0.37), ('ALFA', 3, 0.11), ('TAU', 1.2, 0.13)]
>>> samples
array([('ALFA', 1.0, 0.37), ('BETA', 1.0, 0.11), ('TAU', 1.0, 0.13),
1.3. NumPy: creating and manipulating numerical data 69 1.3. NumPy: creating and manipulating numerical data 70
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
For floats one could use NaNs, but masks work for all types: >>> x = np.linspace(0, 1, 20)
>>> x = np.ma.array([1, 2, 3, 4], mask=[0, 1, 0, 1]) >>> y = np.cos(x) + 0.3*np.random.rand(20)
>>> x >>> p = np.poly1d(np.polyfit(x, y, 3))
masked_array(data = [1 -- 3 --],
mask = [False True False True], >>> t = np.linspace(0, 1, 200)
fill_value = 999999) >>> plt.plot(x, y, 'o', t, p(t), '-')
[<matplotlib.lines.Line2D object at ...>, <matplotlib.lines.Line2D object at ...>]
While it is off topic in a chapter on numpy, lets take a moment to recall good coding practice, which really do pay
off in the long run:
1.3. NumPy: creating and manipulating numerical data 71 1.3. NumPy: creating and manipulating numerical data 72
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
1.3 1.3
1.2 1.2
1.1 1.1
1.0
1.0
0.9
0.9
0.8
0.8 0.7
0.7 0.6
0.6 0.5
0.0 0.2 0.4 0.6 0.8 1.0 1.0 0.5 0.0 0.5 1.0
See http://docs.scipy.org/doc/numpy/reference/routines.polynomials.poly1d.html for more. The Chebyshev polynomials have some advantages in interpolation.
Numpy also has a more sophisticated polynomial interface, which supports e.g. the Chebyshev basis. Text files
32 + 2 1:
Example: populations.txt:
>>> p = np.polynomial.Polynomial([-1, 2, 3]) # coefs in different order!
>>> p(0) # year hare lynx carrot
-1.0 1900 30e3 4e3 48300
>>> p.roots() 1901 47.2e3 6.1e3 48200
array([-1. , 0.33333333]) 1902 70.2e3 9.8e3 41500
>>> p.degree() # In general polynomials do not always expose 'order' 1903 77.4e3 35.2e3 38200
2
Example using polynomials in Chebyshev basis, for polynomials in range [-1, 1]: >>> data = np.loadtxt('data/populations.txt')
>>> data
>>> x = np.linspace(-1, 1, 2000) array([[ 1900., 30000., 4000., 48300.],
>>> y = np.cos(x) + 0.3*np.random.rand(2000) [ 1901., 47200., 6100., 48200.],
>>> p = np.polynomial.Chebyshev.fit(x, y, 90) [ 1902., 70200., 9800., 41500.],
...
>>> t = np.linspace(-1, 1, 200)
>>> plt.plot(x, y, 'r.') >>> np.savetxt('pop2.txt', data)
[<matplotlib.lines.Line2D object at ...>] >>> data2 = np.loadtxt('pop2.txt')
>>> plt.plot(t, p(t), 'k-', lw=3)
[<matplotlib.lines.Line2D object at ...>]
Note: If you have a complicated text file, what you can try are:
np.genfromtxt
Using Pythons I/O functions and e.g. regexps for parsing (Python is quite well suited for this)
1.3. NumPy: creating and manipulating numerical data 73 1.3. NumPy: creating and manipulating numerical data 74
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Other libraries:
Numpys own format
>>> from scipy.misc import imsave
>>> imsave('tiny_elephant.png', img[::6,::6])
>>> plt.imshow(plt.imread('tiny_elephant.png'), interpolation='nearest') Numpy has its own binary format, not portable but with efficient I/O:
<matplotlib.image.AxesImage object at ...>
>>> data = np.ones((3, 3))
>>> np.save('pop.npy', data)
>>> data3 = np.load('pop.npy')
1.3. NumPy: creating and manipulating numerical data 75 1.3. NumPy: creating and manipulating numerical data 76
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Lena is then displayed in false colors. A colormap must be specified for her to be displayed in grey.
1.3.5 Some exercises
>>> plt.imshow(lena, cmap=plt.cm.gray)
Array manipulations <matplotlib.image.AxesImage object at 0x...>
Create an array of the image with a narrower centering [for example,] remove 30 pixels from all the
1. Form the 2-D array (without typing it in explicitly):
borders of the image. To check the result, display this new array with imshow.
[[1, 6, 11],
[2, 7, 12], >>> crop_lena = lena[30:-30,30:-30]
[3, 8, 13],
[4, 9, 14], We will now frame Lenas face with a black locket. For this, we need to create a mask corresponding
[5, 10, 15]] to the pixels we want to be black. The mask is defined by this condition (y-256)**2 +
(x-256)**2
and generate a new array containing its 2nd and 4th rows.
>>> y, x = np.ogrid[0:512,0:512] # x and y indices of pixels
2. Divide each column of the array: >>> y.shape, x.shape
((512, 1), (1, 512))
>>> import numpy as np >>> centerx, centery = (256, 256) # center of the image
>>> a = np.arange(25).reshape(5, 5) >>> mask = ((y - centery)**2 + (x - centerx)**2) > 230**2 # circle
elementwise with the array b = np.array([1., 5, 10, 15, 20]). (Hint: np.newaxis). then we assign the value 0 to the pixels of the image corresponding to the mask. The syntax is
3. Harder one: Generate a 10 x 3 array of random numbers (in range [0,1]). For each row, pick the number extremely simple and intuitive:
closest to 0.5. >>> lena[mask] = 0
>>> plt.imshow(lena)
Use abs and argsort to find the column j closest for each row.
<matplotlib.image.AxesImage object at 0x...>
Use fancy indexing to extract the numbers. (Hint: a[i,j] the array i must contain the row numbers
corresponding to stuff in j.) Follow-up: copy all instructions of this exercise in a script called lena_locket.py then execute
this script in IPython with %run lena_locket.py.
Lets do some manipulations on numpy arrays by starting with the famous image of Lena Data statistics
(http://www.cs.cmu.edu/~chuck/lennapg/). scipy provides a 2D array of this image with the scipy.lena
function: The data in populations.txt describes the populations of hares and lynxes (and carrots) in northern Canada
>>> from scipy import misc during 20 years:
>>> lena = misc.lena()
>>> data = np.loadtxt('data/populations.txt')
>>> year, hares, lynxes, carrots = data.T # trick: columns to variables
Note: In older versions of scipy, you will find lena under scipy.lena()
Here are a few images we will be able to obtain with our manipulations: use different colormaps, crop the image, >>> import matplotlib.pyplot as plt
change some parts of the image. >>> plt.axes([0.2, 0.1, 0.5, 0.8])
<matplotlib.axes...Axes object at ...>
>>> plt.plot(year, hares, year, lynxes, year, carrots)
[<matplotlib.lines.Line2D object at ...>, ...]
>>> plt.legend(('Hare', 'Lynx', 'Carrot'), loc=(1.05, 0.5))
<matplotlib.legend.Legend object at ...>
1.3. NumPy: creating and manipulating numerical data 77 1.3. NumPy: creating and manipulating numerical data 78
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
70000
Mandelbrot set
60000
Hare
50000 Lynx 1.5
Carrot
40000 1.0
30000
0.5
20000
10000 0.0
0 0.5
1900 1905 1910 1915 1920
Computes and print, based on the data in populations.txt... 1.0
1. The mean and std of the populations of each species for the years in the period.
2. Which year each species had the largest population.
1.5
3. Which species has the largest population for each year.
np.array([H, L, C]))
(Hint: argsort & fancy indexing of 2.0 1.5 1.0 0.5 0.0 0.5 1.0
4. Which years any of the populations is above 50000. (Hint: comparisons and np.any)
Write a script that computes the Mandelbrot fractal. The Mandelbrot iteration:
5. The top 2 years for each species when they had the lowest populations. (Hint: argsort, fancy indexing)
N_max = 50
6. Compare (plot) the change in hare population (see help(np.gradient)) and the number of lynxes. some_threshold = 50
Check correlation (see help(np.corrcoef)).
... all without for-loops. c = x + 1j*y
Crude integral approximations Point (x, y) belongs to the Mandelbrot set if || < some_threshold.
Do this computation by:
Write a function f(a, b, c) that returns . Form a 24x12x6 array containing its values in parameter
ranges [0,1] x [0,1] x [0,1]. 1. Construct a grid of c = x + 1j*y values in range [-2, 1] x [-1.5, 1.5]
Approximate the 3-d integral 2. Do the iteration
1 1 1
3. Form the 2-d boolean mask indicating which points are in the set
( )
0 0 0 4. Save the result to an image with:
over this volume with the mean. The exact result is: ln 2 1
2 0.1931 . . . what is your relative error? >>> import matplotlib.pyplot as plt
(Hints: use elementwise operations and broadcasting. You can make np.ogrid give a number of points in given >>> plt.imshow(mask.T, extent=[-2, 1, -1.5, 1.5])
range with np.ogrid[0:1:20j].) <matplotlib.image.AxesImage object at ...>
>>> plt.gray()
Reminder Python functions: >>> plt.savefig('mandelbrot.png')
1.3. NumPy: creating and manipulating numerical data 79 1.3. NumPy: creating and manipulating numerical data 80
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Thanks
1.4.1 Introduction
Many thanks to Bill Wing and Christoph Deil for review and corrections.
Tip: Matplotlib is probably the single most used Python package for 2D-graphics. It provides both a very quick
Authors: Nicolas Rougier, Mike Mller, Gal Varoquaux way to visualize data from Python and publication-quality figures in many formats. We are going to explore
matplotlib in interactive mode covering most common cases.
Tip: IPython is an enhanced interactive Python shell that has lots of interesting features including named in-
puts and outputs, access to shell commands, improved debugging and many more. It is central to the scientific-
computing workflow in Python for its use in combination with Matplotlib:
We start IPython with the command line argument -pylab (--pylab since IPython version 0.12), for interactive
matplotlib sessions with Matlab/Mathematica-like functionality.
pylab
Tip: pylab provides a procedural interface to the matplotlib object-oriented plotting library. It is modeled
closely after Matlab. Therefore, the majority of plotting commands in pylab have Matlab analogs with similar Hint: Documentation
arguments. Important commands are explained with interactive examples. plot tutorial
plot() command
Tip: You can also download each of the examples and run it using regular python, but you will loose interactive
data manipulation:
Hint: Documentation
$ python exercice_1.py Customizing matplotlib
You can get source for each step by clicking on the corresponding figure.
In the script below, weve instantiated (and commented) all the figure settings that influence the appearance of the
plot.
Tip: The settings have been explicitly set to their default values, but now you can interactively play with the
values to explore their affect (see Line properties (page 101) and Line styles (page 102) below).
Hint: Documentation
xticks() command
yticks() command
Adding a legend
Hint: Documentation
Working with text
xticks() command
yticks() command
set_xticklabels()
set_yticklabels()
Tip: Ticks are now properly placed but their label is not very explicit. We could guess that 3.142 is but it would Hint: Documentation
be better to make it explicit. When we set tick values, we can also provide a corresponding label in the second
Legend guide
argument list. Note that well use latex to allow for nice rendering of the label.
legend() command
...
pl.xticks([-np.pi, -np.pi/2, 0, np.pi/2, np.pi], Legend API
[r'$-\pi$', r'$-\pi/2$', r'$0$', r'$+\pi/2$', r'$+\pi$'])
pl.yticks([-1, 0, +1], Tip: Lets add a legend in the upper left corner. This only requires adding the keyword argument label (that will
[r'$-1$', r'$0$', r'$+1$']) be used in the legend box) to the plot commands.
...
...
pl.plot(X, C, color="blue", linewidth=2.5, linestyle="-", label="cosine")
pl.plot(X, S, color="red", linewidth=2.5, linestyle="-", label="sine")
Moving spines
pl.legend(loc='upper left')
...
Hint: Documentation
Spines
Axis container
Transformations tutorial
Hint: Documentation
Annotating axis
Tip: Spines are the lines connecting the axis tick marks and noting the boundaries of the data area. They can be
placed at arbitrary positions and until now, they were on the border of the axis. Well change that since we want annotate() command
to have them in the middle. Since there are four of them (top/bottom/left/right), well discard the top and right by
setting their color to none and well move the bottom and left ones to coordinate 0 in data space coordinates.
Tip: Lets annotate some interesting points using the annotate command. We chose the 2/3 value and we want
to annotate both the sine and the cosine. Well first draw a marker on the curve as well as a straight dotted line. current axes and gca in turn calls gcf() to get the current figure. If there is none it calls figure() to make
Then, well use the annotate command to display some text with an arrow. one, strictly speaking, to make a subplot(111). Lets look at the details.
...
t = 2 * np.pi / 3 Figures
pl.plot([t, t], [0, np.cos(t)], color='blue', linewidth=2.5, linestyle="--")
pl.scatter([t, ], [np.cos(t), ], 50, color='blue')
Tip: A figure is the windows in the GUI that has Figure # as title. Figures are numbered starting from 1 as
opposed to the normal Python way starting from 0. This is clearly MATLAB-style. There are several parameters
pl.annotate(r'$sin(\frac{2\pi}{3})=\frac{\sqrt{3}}{2}$',
that determine what the figure looks like:
xy=(t, np.sin(t)), xycoords='data',
xytext=(+10, +30), textcoords='offset points', fontsize=16,
arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=.2")) Argument Default Description
num 1 number of figure
pl.plot([t, t],[0, np.sin(t)], color='red', linewidth=2.5, linestyle="--") figsize figure.figsize figure size in in inches (width, height)
pl.scatter([t, ],[np.sin(t), ], 50, color='red') dpi figure.dpi resolution in dots per inch
facecolor figure.facecolor color of the drawing background
pl.annotate(r'$cos(\frac{2\pi}{3})=-\frac{1}{2}$', edgecolor figure.edgecolor color of edge around the drawing background
xy=(t, np.cos(t)), xycoords='data',
frameon True draw figure frame or not
xytext=(-90, -50), textcoords='offset points', fontsize=16,
arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=.2")) Tip: The defaults can be specified in the resource file and will be used most of the time. Only the number of the
... figure is frequently changed.
As with other objects, you can set figure properties also setp or with the set_something methods.
Devil is in the details When you work with the GUI you can close a figure by clicking on the x in the upper right corner. But you
can close a figure programmatically by calling close. Depending on the argument it closes (1) the current figure
(no argument), (2) a specific figure (figure number or figure instance as argument), or (3) all figures ("all" as
argument).
Subplots
Tip: With subplot you can arrange plots in a regular grid. You need to specify the number of rows and columns
Hint: Documentation and the number of the plot. Note that the gridspec command is a more powerful alternative.
Artists
BBox
Tip: The tick labels are now hardly visible because of the blue and red lines. We can make them bigger and we
can also adjust their properties such that theyll be rendered on a semi-transparent white background. This will
allow us to see both the data and the labels.
...
for label in ax.get_xticklabels() + ax.get_yticklabels():
label.set_fontsize(16) Axes
label.set_bbox(dict(facecolor='white', edgecolor='None', alpha=0.65))
... Axes are very similar to subplots but allow placement of plots at any location in the fig-
ure. So if we want to put a smaller plot inside a bigger one we do so with axes.
A figure in matplotlib means the whole window in the user interface. Within this figure there can be subplots.
Tip: So far we have used implicit figure and axes creation. This is handy for fast plots. We can have more control
over the display using figure, subplot, and axes explicitly. While subplot positions the plots in a regular grid, axes
allows free placement within the figure. Both can be useful depending on your intention. Weve already worked
with figures and subplots without explicitly calling them. When we call plot, matplotlib calls gca() to get the
Well formatted ticks are an important part of publishing-ready figures. Matplotlib provides a totally configurable
system for ticks. There are tick locators to specify where ticks should appear and tick formatters to give ticks the
appearance you want. Major and minor ticks can be located and formatted independently from each other. Per
default minor ticks are not shown, i.e. there is only an empty list for them because it is as NullLocator (see
below).
Tick Locators
(page 94) (page 95)
Tick locators control the positions of the ticks. They are set as follows:
ax = pl.gca()
ax.xaxis.set_major_locator(eval(locator))
1.4.4 Other Types of Plots: examples and exercises (page 96) (page 96)
Hint: You need to use the fill_between command. Hint: You need to take care of text alignment.
Starting from the code below, try to reproduce the graphic on the right taking care of filled areas: Starting from the code below, try to reproduce the graphic on the right by adding labels for red bars.
n = 256 n = 12
X = np.linspace(-np.pi, np.pi, n, endpoint=True) X = np.arange(n)
Y = np.sin(2 * X) Y1 = (1 - X / float(n)) * np.random.uniform(0.5, 1.0, n)
Y2 = (1 - X / float(n)) * np.random.uniform(0.5, 1.0, n)
pl.plot(X, Y + 1, color='blue', alpha=1.00)
pl.plot(X, Y - 1, color='blue', alpha=1.00) pl.bar(X, +Y1, facecolor='#9999ff', edgecolor='white')
pl.bar(X, -Y2, facecolor='#ff9999', edgecolor='white')
Click on the figure for solution.
for x, y in zip(X, Y1):
pl.text(x + 0.4, y + 0.05, '%.2f' % y, ha='center', va='bottom')
Scatter Plots
pl.ylim(-1.25, +1.25)
Contour Plots
Starting from the code below, try to reproduce the graphic on the right taking care of marker size, color and
transparency.
n = 1024
X = np.random.normal(0,1,n) Hint: You need to use the clabel command.
Y = np.random.normal(0,1,n)
Starting from the code below, try to reproduce the graphic on the right taking care of the colormap (see Colormaps
pl.scatter(X,Y) (page 102) below).
Click on figure for solution. def f(x, y):
return (1 - x / 2 + x ** 5 + y ** 3) * np.exp(-x ** 2 -y ** 2)
n = 256
x = np.linspace(-3, 3, n)
y = np.linspace(-3, 3, n)
X, Y = np.meshgrid(x, y)
Imshow
Starting from the code above, try to reproduce the graphic on the right taking care of colors and orientations.
n = 8
X, Y = np.mgrid[0:n, 0:n]
Hint: You need to take care of the origin of the image in the imshow command and use a colorbar pl.quiver(X, Y)
n = 10
x = np.linspace(-3, 3, 4 * n)
y = np.linspace(-3, 3, 3 * n)
X, Y = np.meshgrid(x, y)
pl.imshow(f(X, Y))
Pie Charts Starting from the code below, try to reproduce the graphic on the right
taking care of line styles.
axes = pl.gca()
axes.set_xlim(0, 4)
axes.set_ylim(0, 3)
axes.set_xticklabels([])
axes.set_yticklabels([])
Multi Plots
Starting from the code below, try to reproduce the graphic on the right taking care of colors and slices size.
Z = np.random.uniform(0, 1, 20)
pl.pie(Z)
Text
Starting from the code below, try to reproduce the graphic on the right.
pl.axes([0, 0, 1, 1])
N = 20
theta = np.arange(0., 2 * np.pi, 2 * np.pi / N) Hint: Have a look at the matplotlib logo.
radii = 10 * np.random.rand(N)
width = np.pi / 4 * np.random.rand(N) Try to do the same from scratch !
bars = pl.bar(theta, radii, width=width, bottom=0.0)
Click on figure for solution.
for r, bar in zip(radii, bars):
bar.set_facecolor(cm.jet(r / 10.))
bar.set_alpha(0.5)
Quick read
Click on figure for solution. If you want to do a first quick pass through the Scipy lectures to learn the ecosystem, you can directly skip
to the next chapter: Scipy : high-level scientific computing (page 103).
3D Plots The remainder of this chapter is not necessary to follow the rest of the intro part. But be sure to come back
and finish this chapter later.
Matplotlib benefits from extensive documentation as well as a large community of users and developers. Here are
some links of interest:
Tutorials
Pyplot tutorial
Hint: You need to use contourf Introduction
Controlling line properties
Starting from the code below, try to reproduce the graphic on the right. Working with multiple figures and axes
Working with text argument, allowing for multiple *x*, *y* pairs with an
Image tutorial optional format string. For example, each of the following is
Startup commands legal::
Importing image data into Numpy arrays
Plotting numpy arrays as images plot(x, y) # plot x and y using default line style and color
Text tutorial plot(x, y, 'bo') # plot x and y using blue circle markers
Text introduction plot(y) # plot y using x as index array 0..N-1
Basic text commands plot(y, 'r+') # ditto, but with red plusses
Text properties and layout
If *x* and/or *y* is 2-dimensional, then the corresponding columns
Writing mathematical expressions
will be plotted.
Text rendering With LaTeX ...
Annotating text
Artist tutorial
Introduction Galleries
Customizing your objects
Object containers The matplotlib gallery is also incredibly useful when you search how to render a given graphic. Each example
Figure container comes with its source.
Axes container
Axis containers A smaller gallery is also available here.
Tick containers
Path tutorial
Mailing lists
Introduction
Bzier example
Finally, there is a user mailing list where you can ask for help and a developers mailing list that is more technical.
Compound paths
Transforms tutorial
Introduction 1.4.6 Quick references
Data coordinates
Axes coordinates
Here is a set of tables that show main properties and styles.
Blended transformations
Using offset transforms to create a shadow effect
The transformation pipeline
Matplotlib documentation
User guide
FAQ
Installation
Usage
How-To
Troubleshooting
Environment Variables
Screenshots
Code documentation
The code is well documented and you can quickly access a specific command from within a python session:
>>> import pylab as pl
>>> help(pl.plot)
Help on function plot in module matplotlib.pyplot:
plot(*args, **kwargs)
Plot lines and/or markers to the
:class:`~matplotlib.axes.Axes`. *args* is a variable length
Colormaps
All colormaps can be reversed by appending _r. For instance, gray_r is the reverse of gray.
If you want to know more about colormaps, checks Documenting the matplotlib colormaps.
1.5. Scipy : high-level scientific computing 103 1.5. Scipy : high-level scientific computing 104
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Bessel function, such as scipy.special.jn() (nth integer order Bessel function) >>> spec
array([ 14.88982544, 0.45294236, 0.29654967])
Elliptic function (scipy.special.ellipj() for the Jacobian elliptic function, ...)
Gamma function: scipy.special.gamma(), also note scipy.special.gammaln() which will The original matrix can be re-composed by matrix multiplication of the outputs of svd with np.dot:
give the log of Gamma to a higher numerical precision.
>>> sarr = np.diag(spec)
Erf, the area under a Gaussian curve: scipy.special.erf() >>> svd_mat = uarr.dot(sarr).dot(vharr)
>>> np.allclose(svd_mat, arr)
True
1.5.3 Linear algebra operations: scipy.linalg
SVD is commonly used in statistics and signal processing. Many other standard decompositions (QR, LU,
The scipy.linalg module provides standard linear algebra operations, relying on an underlying efficient Cholesky, Schur), as well as solvers for linear systems, are available in scipy.linalg.
implementation (BLAS, LAPACK).
The scipy.linalg.det() function computes the determinant of a square matrix: 1.5.4 Fast Fourier transforms: scipy.fftpack
>>> from scipy import linalg
The scipy.fftpack module allows to compute fast Fourier transforms. As an illustration, a (noisy) input
>>> arr = np.array([[1, 2],
... [3, 4]]) signal may look like:
>>> linalg.det(arr) >>> time_step = 0.02
-2.0 >>> period = 5.
>>> arr = np.array([[3, 2], >>> time_vec = np.arange(0, 20, time_step)
... [6, 4]]) >>> sig = np.sin(2 * np.pi / period * time_vec) + \
>>> linalg.det(arr) ... 0.5 * np.random.randn(time_vec.size)
0.0
>>> linalg.det(np.ones((3, 4))) The observer doesnt know the signal frequency, only the sampling time step of the signal sig.
Traceback (most recent call last):
The signal is supposed to come from a real function so the Fourier transform will be sym-
...
metric. The scipy.fftpack.fftfreq() function will generate the sampling frequencies and
ValueError: expected square matrix
Traceback (most recent call last): scipy.fftpack.fft() will compute the fast Fourier transform:
... >>> from scipy import fftpack
ValueError: expected square matrix >>> sample_freq = fftpack.fftfreq(sig.size, d=time_step)
>>> sig_fft = fftpack.fft(sig)
The scipy.linalg.inv() function computes the inverse of a square matrix:
>>> arr = np.array([[1, 2], Because the resulting power is symmetric, only the positive part of the spectrum needs to be used for finding the
... [3, 4]]) frequency:
>>> iarr = linalg.inv(arr) >>> pidxs = np.where(sample_freq > 0)
>>> iarr >>> freqs = sample_freq[pidxs]
array([[-2. , 1. ], >>> power = np.abs(sig_fft)[pidxs]
[ 1.5, -0.5]])
>>> np.allclose(np.dot(arr, iarr), np.eye(2))
True
600
Finally computing the inverse of a singular matrix (its determinant is zero) will raise LinAlgError: Peak frequency
>>> arr = np.array([[3, 2], 500
... [6, 4]])
>>> linalg.inv(arr)
Traceback (most recent call last): 400
...
plower
...LinAlgError: singular matrix
Traceback (most recent call last):
300
...
...LinAlgError: singular matrix 200
More advanced operations are available, for example singular-value decomposition (SVD): 0.050.100.150.200.250.300.350.400.45
100
>>> arr = np.arange(9).reshape((3, 3)) + np.diag([1, 0, 1])
>>> uarr, spec, vharr = linalg.svd(arr)
0
The resulting array spectrum is:
0 5 10 15 20 25
Frequency [Hz]
The signal frequency can be found by:
1.5. Scipy : high-level scientific computing 105 1.5. Scipy : high-level scientific computing 106
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Now the high-frequency noise will be removed from the Fourier transformed signal: 80
>>> sig_fft[np.abs(sample_freq) > freq] = 0 hare
The resulting filtered signal can be computed by the scipy.fftpack.ifft() function:
70 lynx
60 carrot
1 250
2
200
Power ( 103 )
3
0 5 10 15 20
Time [s]
150
numpy.fft
Numpy also has an implementation of FFT (numpy.fft). However, in general the scipy one should be 100
preferred, as it uses more efficient underlying implementations.
50
0
0 5 10 15 20
Period
1.5. Scipy : high-level scientific computing 107 1.5. Scipy : high-level scientific computing 108
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Worked example: Gaussian image blur Exercise: Denoise moon landing image
Convolution:
1 () = ( )0 ( )
1 () = ()
0 ()
50
1. Examine the provided image moonlanding.png, which is heavily contaminated with periodic noise. In
100 this exercise, we aim to clean up the noise using the Fast Fourier Transform.
2. Load the image using pylab.imread().
3. Find and use the 2-D FFT function in scipy.fftpack, and plot the spectrum (Fourier transform
of) the image. Do you have any trouble visualising the spectrum? If so, why?
150 4. The spectrum consists of high and low frequency components. The noise is contained in the high-
frequency part of the spectrum, so set some of those components to zero (use array slicing).
5. Apply the inverse Fourier transform to see the resulting image.
1.5. Scipy : high-level scientific computing 109 1.5. Scipy : high-level scientific computing 110
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Another available (but much less efficient) global optimizer is scipy.optimize.brute() (brute force opti-
mization on a grid). More efficient algorithms for different classes of global optimization problems exist, but this
120 is out of the scope of scipy. Some useful packages for global optimization are OpenOpt, IPOPT, PyGMO and
PyEvolve.
100 Note: scipy used to contain the routine anneal, it has been deprecated since SciPy 0.14.0 and removed in
SciPy 0.16.0.
40 Note: Finding minima of function is discussed in more details in the advanced chapter: Mathematical optimiza-
tion: finding minima of functions (page 239).
1.5. Scipy : high-level scientific computing 111 1.5. Scipy : high-level scientific computing 112
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
120
f(x) Six-hump Camelback function
100 Curve fit result
Minima 6
80 Roots 5
4
60 3
f(x, y)
2
f(x)
40 1
0
1
20 2
1.0
0 0.5
2.01.51.0 0.0y
0.50.0 0.5
20 x 0.51.01.5
10 5 0 5 10 2.0 1.0
x
The six-hump camelback function
Note: In Scipy >= 0.11 unified interfaces to all minimization and root finding algorithms
are available: scipy.optimize.minimize(), scipy.optimize.minimize_scalar() and 4 2
scipy.optimize.root(). They allow comparing various algorithms easily through the method keyword. (, ) = (4 2.12 + ) + + (4 2 4) 2
3
You can find algorithms with the same functionalities for multi-dimensional problems in scipy.optimize. has multiple global and local minima. Find the global minima of this function.
Hints:
Variables can be restricted to -2 < x < 2 and -1 < y < 1.
Exercise: Curve fitting of temperature data Use numpy.meshgrid() and pylab.imshow() to find visually the regions.
The temperature extremes in Alaska for each month, starting in January, are given by (in degrees Use scipy.optimize.fmin_bfgs() or another multi-dimensional minimizer.
Celcius): How many global minima are there, and what is the function value at those points? What
happens for an initial guess of (x, y) = (0, 0)?
max: 17, 19, 21, 28, 33, 38, 37, 37, 31, 23, 19, 18
min: -62, -59, -56, -46, -32, -18, -9, -13, -25, -46, -52, -58
See the summary exercise on Non linear least squares curve fitting: application to point extraction in topograph-
1. Plot these temperature extremes. ical lidar data (page 129) for another, more advanced example.
2. Define a function that can describe min and max temperatures. Hint: this function has to
have a period of 1 year. Hint: include a time offset.
3. Fit this function to the data with scipy.optimize.curve_fit(). 1.5.6 Statistics and random numbers: scipy.stats
4. Plot the result. Is the fit reasonable? If not, why?
5. Is the time offset for min and max temperatures the same within the fit accuracy? The module scipy.stats contains statistical tools and probabilistic descriptions of random processes. Random
number generators for various random process can be found in numpy.random.
Given observations of a random process, their histogram is an estimator of the random processs PDF (probability
density function):
>>> a = np.random.normal(size=1000)
>>> bins = np.arange(-4, 5)
>>> bins
1.5. Scipy : high-level scientific computing 113 1.5. Scipy : high-level scientific computing 114
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
A statistical test is a decision indicator. For instance, if we have two sets of observations, that we assume are gen-
erated from Gaussian processes, we can use a T-test to decide whether the two sets of observations are significantly
0.40 different:
0.35 >>> a = np.random.normal(0, 1, size=100)
>>> b = np.random.normal(1, 1, size=10)
0.30 >>> stats.ttest_ind(a, b)
(array(-3.177574054...), 0.0019370639...)
0.25
Tip: The resulting output is composed of:
0.20
The T statistic value: it is a number the sign of which is proportional to the difference between the two
0.15 random processes and the magnitude is related to the significance of this difference.
the p value: the probability of both processes being identical. If it is close to 1, the two process are almost
0.10
certainly identical. The closer it is to zero, the more likely it is that the processes have different means.
0.05
See also:
0.00
6 4 2 0 2 4 6 The chapter on statistics (page 271) introduces much more elaborate tools for statistical testing and statistical data
loading and visualization outside of scipy.
If we know that the random process belongs to a given family of random processes, such as normal processes,
we can do a maximum-likelihood fit of the observations to estimate the parameters of the underlying distribution. 1.5.7 Interpolation: scipy.interpolate
Here we fit a normal process to the observed data:
>>> loc, std = stats.norm.fit(a) The scipy.interpolate is useful for fitting a function from experimental data and thus evaluating points
>>> loc where no measure exists. The module is based on the FITPACK Fortran subroutines from the netlib project.
0.0314345570...
By imagining experimental data close to a sine function:
>>> std
0.9778613090... >>> measured_time = np.linspace(0, 1, 10)
>>> noise = (np.random.random(10)*2 - 1) * 1e-1
>>> measures = np.sin(2 * np.pi * measured_time) + noise
Exercise: Probability distributions
The scipy.interpolate.interp1d class can build a linear interpolation function:
Generate 1000 random variates from a gamma distribution with a shape parameter of 1, then plot a histogram
from those samples. Can you plot the pdf on top (it should match)? >>> from scipy.interpolate import interp1d
Extra: the distributions have a number of useful methods. Explore them by reading the docstring or by using >>> linear_interp = interp1d(measured_time, measures)
IPython tab completion. Can you find the shape parameter of 1 back by using the fit method on your
random variates? Then the scipy.interpolate.linear_interp instance needs to be evaluated at the time of interest:
>>> computed_time = np.linspace(0, 1, 50)
>>> linear_results = linear_interp(computed_time)
Percentiles
A cubic interpolation can also be selected by providing the kind optional keyword argument:
The median is the value with half of the observations below, and half above: >>> cubic_interp = interp1d(measured_time, measures, kind='cubic')
>>> cubic_results = cubic_interp(computed_time)
>>> np.median(a)
0.04041769593...
The results are now gathered on the following Matplotlib figure:
It is also called the percentile 50, because 50% of the observation are below it:
1.5. Scipy : high-level scientific computing 115 1.5. Scipy : high-level scientific computing 116
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
0.5
linear interp >>> counter = np.zeros((1,), dtype=np.uint16)
Thus the derivative function has been called more than 40 times (which was the number of time steps):
0.5 >>> counter
array([129], dtype=uint16)
and the cumulative number of iterations for each of the 10 first time steps can be obtained by:
1.0 >>> info['nfe'][:10]
array([31, 35, 43, 49, 53, 57, 59, 63, 65, 69], dtype=int32)
Note that the solver requires more iterations for the first time step. The solution yvec for the trajectory can now
1.5 be plotted:
0.0 0.2 0.4 0.6 0.8 1.0
1.0
scipy.interpolate.interp2d is similar to scipy.interpolate.interp1d, but for 2-D arrays.
Note that for the interp family, the computed time must stay within the measured time range. See the sum- 0.8
mary exercise on Maximum wind speed prediction at the Sprog station (page 125) for a more advance spline
interpolation example.
y position [m]
0.6
1.5.8 Numerical integration: scipy.integrate
As an introduction, let us solve the ODE dy/dt = -2y between t = 0..4, with the initial condition y(t=0) so the system will be underdamped, because:
= 1. First the function computing the derivative of the position needs to be defined: >>> eps = cviscous / (2 * mass * np.sqrt(kspring/mass))
>>> eps < 1
>>> def calc_derivative(ypos, time, counter_arr):
True
... counter_arr += 1
1.5. Scipy : high-level scientific computing 117 1.5. Scipy : high-level scientific computing 118
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
For the scipy.integrate.odeint() solver the 2nd order equation needs to be transformed in a system of
two first-order equations for the vector Y=(y, y). It will be convenient to define nu = 2 eps * wo = c 8
/ m and om = wo^2 = k/m:
>>> nu_coef = cviscous / mass 6
>>> om_coef = kspring / mass
Thus the function will calculate the velocity and acceleration by: 4
>>> def calc_deri(yvec, time, nuc, omc):
... return (yvec[1], -nuc * yvec[1] - omc * yvec[0]) 2
...
>>> time_vec = np.linspace(0, 10, 100)
>>> yarr = odeint(calc_deri, (1, 0), time_vec, args=(nu_coef, om_coef)) 0
The final position and velocity are shown on the following Matplotlib figure:
2
1.5 4
y 0 1 2 3 4 5
1.0 y'
scipy.signal.resample(): resample a signal to n points using FFT.
0.5
>>> t = np.linspace(0, 5, 100)
0.0 >>> x = np.sin(t)
There is no Partial Differential Equations (PDE) solver in Scipy. Some Python packages for solving PDEs are 0.5
available, such as fipy or SfePy.
0.0
1.5.9 Signal processing: scipy.signal
0.5
>>> from scipy import signal
1.5. Scipy : high-level scientific computing 119 1.5. Scipy : high-level scientific computing 120
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Image processing routines may be sorted according to the category of processing they perform.
>>> from scipy import misc Mathematical morphology is a mathematical theory that stems from set theory. It characterizes and transforms
>>> lena = misc.lena() geometrical structures. Binary (black and white) images, in particular, can be transformed using this theory:
>>> shifted_lena = ndimage.shift(lena, (50, 50)) the sets to be transformed are the sets of neighboring non-zero-valued pixels. The theory was also extended to
>>> shifted_lena2 = ndimage.shift(lena, (50, 50), mode='nearest')
gray-valued images.
>>> rotated_lena = ndimage.rotate(lena, 30)
>>> cropped_lena = lena[50:-50, 50:-50]
>>> zoomed_lena = ndimage.zoom(lena, 2)
>>> zoomed_lena.shape
(1024, 1024)
>>> plt.subplot(151)
<matplotlib.axes._subplots.AxesSubplot object at 0x...> Elementary mathematical-morphology operations use a structuring element in order to modify other geometrical
structures.
>>> plt.imshow(shifted_lena, cmap=plt.cm.gray)
<matplotlib.image.AxesImage object at 0x...> Let us first generate a structuring element
1.5. Scipy : high-level scientific computing 121 1.5. Scipy : high-level scientific computing 122
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Dilation
>>> a = np.zeros((5, 5))
>>> a[2, 2] = 1
>>> a
array([[ 0., 0., 0., 0., 0.], Exercise
[ 0., 0., 0., 0., 0.],
[ 0., 0., 1., 0., 0.], Check that the area of the reconstructed square is smaller than the area of the initial square. (The
[ 0., 0., 0., 0., 0.], opposite would occur if the closing step was performed before the opening).
[ 0., 0., 0., 0., 0.]])
>>> ndimage.binary_dilation(a).astype(a.dtype)
array([[ 0., 0., 0., 0., 0.], For gray-valued images, eroding (resp. dilating) amounts to replacing a pixel by the minimal (resp. maximal)
[ 0., 0., 1., 0., 0.], value among pixels covered by the structuring element centered on the pixel of interest.
[ 0., 1., 1., 1., 0.],
>>> a = np.zeros((7,7), dtype=np.int)
[ 0., 0., 1., 0., 0.],
>>> a[1:6, 1:6] = 3
[ 0., 0., 0., 0., 0.]])
>>> a[4,4] = 2; a[2,3] = 1
>>> a
Opening
array([[0, 0, 0, 0, 0, 0, 0],
>>> a = np.zeros((5,5), dtype=np.int) [0, 3, 3, 3, 3, 3, 0],
>>> a[1:4, 1:4] = 1; a[4, 4] = 1 [0, 3, 3, 1, 3, 3, 0],
>>> a [0, 3, 3, 3, 3, 3, 0],
array([[0, 0, 0, 0, 0], [0, 3, 3, 3, 2, 3, 0],
[0, 1, 1, 1, 0], [0, 3, 3, 3, 3, 3, 0],
[0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0]])
[0, 1, 1, 1, 0], >>> ndimage.grey_erosion(a, size=(3,3))
[0, 0, 0, 0, 1]]) array([[0, 0, 0, 0, 0, 0, 0],
>>> # Opening removes small objects [0, 0, 0, 0, 0, 0, 0],
>>> ndimage.binary_opening(a, structure=np.ones((3,3))).astype(np.int) [0, 0, 1, 1, 1, 0, 0],
array([[0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0],
[0, 1, 1, 1, 0], [0, 0, 3, 2, 2, 0, 0],
[0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0],
[0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0]])
[0, 0, 0, 0, 0]])
>>> # Opening can also smooth corners
>>> ndimage.binary_opening(a).astype(np.int) Measurements on images
array([[0, 0, 0, 0, 0],
[0, 0, 1, 0, 0],
Let us first generate a nice synthetic binary image.
[0, 1, 1, 1, 0],
[0, 0, 1, 0, 0], >>> x, y = np.indices((100, 100))
[0, 0, 0, 0, 0]]) >>> sig = np.sin(2*np.pi*x/50.)*np.sin(2*np.pi*y/50.)*(1+x*y/50.**2)**2
>>> mask = sig > 1
Closing: ndimage.binary_closing
Now we look for various information about the objects in the image:
Exercise >>> labels, nb = ndimage.label(mask)
>>> nb
Check that opening amounts to eroding, then dilating. 8
>>> areas = ndimage.sum(mask, labels, range(1, labels.max()+1))
An opening operation removes small structures, while a closing operation fills small holes. Such operations can >>> areas
array([ 190., 45., 424., 278., 459., 190., 549., 424.])
therefore be used to clean an image.
1.5. Scipy : high-level scientific computing 123 1.5. Scipy : high-level scientific computing 124
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
>>> maxima = ndimage.maximum(sig, labels, range(1, labels.max()+1)) Computing the cumulative probabilities
>>> maxima
array([ 1.80238238, 1.13527605, 5.51954079, 2.49611818, The annual wind speeds maxima have already been computed and saved in the numpy format in the file
6.71673619, 1.80238238, 16.76547217, 5.51954079]) examples/max-speeds.npy, thus they will be loaded by using numpy:
>>> ndimage.find_objects(labels==4)
[(slice(30L, 48L, None), slice(30L, 48L, None))] >>> import numpy as np
>>> sl = ndimage.find_objects(labels==4) >>> max_speeds = np.load('intro/summary-exercises/examples/max-speeds.npy')
>>> import pylab as pl >>> years_nb = max_speeds.shape[0]
>>> pl.imshow(sig[sl[0]])
<matplotlib.image.AxesImage object at ...> Following the cumulative probability definition p_i from the previous section, the corresponding values will be:
>>> cprob = (np.arange(years_nb, dtype=np.float32) + 1)/(years_nb + 1)
In this section the quantile function will be estimated by using the UnivariateSpline class which can
represent a spline from points. The default behavior is to build a spline of degree 3 and points can have
different weights according to their reliability. Variants are InterpolatedUnivariateSpline and
LSQUnivariateSpline on which errors checking is going to change. In case a 2D spline is wanted, the
See the summary exercise on Image processing application: counting bubbles and unmolten grains (page 133) for
BivariateSpline class family is provided. All those classes for 1D and 2D splines use the FITPACK For-
a more advanced example.
tran subroutines, thats why a lower library access is available through the splrep and splev functions for
respectively representing and evaluating a spline. Moreover interpolation functions without the use of FITPACK
1.5.11 Summary exercises on scientific computing parameters are also provided for simpler use (see interp1d, interp2d, barycentric_interpolate
and so on).
The summary exercises use mainly Numpy, Scipy and Matplotlib. They provide some real-life examples of For the Sprog maxima wind speeds, the UnivariateSpline will be used because a spline of degree 3 seems
scientific computing with Python. Now that the basics of working with Numpy and Scipy have been introduced, to correctly fit the data:
the interested user is invited to try these exercises.
>>> from scipy.interpolate import UnivariateSpline
>>> quantile_func = UnivariateSpline(cprob, sorted_max_speeds)
Maximum wind speed prediction at the Sprog station
The quantile function is now going to be evaluated from the full range of probabilities:
The exercise goal is to predict the maximum wind speed occurring every 50 years even if no measure exists for >>> nprob = np.linspace(0, 1, 1e2)
such a period. The available data are only measured over 21 years at the Sprog meteorological station located >>> fitted_max_speeds = quantile_func(nprob)
in Denmark. First, the statistical steps will be given and then illustrated with functions from the scipy.interpolate
module. At the end the interested readers are invited to compute results from raw data and in a slightly different In the current model, the maximum wind speed occurring every 50 years is defined as the upper 2% quantile. As
approach. a result, the cumulative probability value will be:
>>> fifty_prob = 1. - 0.02
Statistical approach
So the storm wind speed occurring every 50 years can be guessed by:
The annual maxima are supposed to fit a normal probability density function. However such function is not going >>> fifty_wind = quantile_func(fifty_prob)
to be estimated because it gives a probability from a wind speed maxima. Finding the maximum wind speed >>> fifty_wind
occurring every 50 years requires the opposite approach, the result needs to be found from a defined probability. array(32.97989825...)
That is the quantile function role and the exercise goal will be to find it. In the current model, it is supposed that
the maximum wind speed occurring every 50 years is defined as the upper 2% quantile. The results are now gathered on a Matplotlib figure:
By definition, the quantile function is the inverse of the cumulative distribution function. The latter describes the
probability distribution of an annual maxima. In the exercise, the cumulative probability p_i for a given year Exercise with the Gumbell distribution
i is defined as p_i = i/(N+1) with N = 21, the number of measured years. Thus it will be possible to
calculate the cumulative probability of every measured wind speed maxima. From those experimental points, the The interested readers are now invited to make an exercise by using the wind speeds measured over 21 years.
scipy.interpolate module will be very useful for fitting the quantile function. Finally the 50 years maxima is going The measurement period is around 90 minutes (the original period was around 10 minutes but the file size
to be evaluated from the cumulative probability of the 2% quantile. has been reduced for making the exercise setup easier). The data are stored in numpy format inside the file
examples/sprog-windspeeds.npy. Do not look at the source code for the plots until you have completed
the exercise.
1.5. Scipy : high-level scientific computing 125 1.5. Scipy : high-level scientific computing 126
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Figure 1.1: Solution: Python source file Figure 1.2: Solution: Python source file
1.5. Scipy : high-level scientific computing 127 1.5. Scipy : high-level scientific computing 128
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
The first step will be to find the annual maxima by using numpy and plot them as a matplotlib bar figure. In this tutorial, the goal is to analyze the waveform recorded by the lidar system 2 . Such a signal contains peaks
whose center and amplitude permit to compute the position and some characteristics of the hit target. When the
The second step will be to use the Gumbell distribution on cumulative probabilities p_i defined as -log(
footprint of the laser beam is around 1m on the Earth surface, the beam can hit multiple targets during the two-way
-log(p_i) ) for fitting a linear quantile function (remember that you can define the degree of the
propagation (for example the ground and the top of a tree or building). The sum of the contributions of each target
UnivariateSpline). Plotting the annual maxima versus the Gumbell distribution should give you
hit by the laser beam then produces a complex signal with multiple peaks, each one containing information about
the following figure.
one target.
One state of the art method to extract information from these data is to decompose them in a sum of Gaussian
functions where each function represents the contribution of a target hit by the laser beam.
Therefore, we use the scipy.optimize module to fit a waveform to one or a sum of Gaussian functions.
The last step will be to find 34.23 m/s for the maximum wind speed occurring every 50 years.
Non linear least squares curve fitting: application to point extraction in topographical lidar data
The goal of this exercise is to fit a model to some data. The data used in this tutorial are lidar data and are described
in details in the following introductory paragraph. If youre impatient and want to practice now, please skip it and
go directly to Loading and visualization (page 130).
Introduction
Lidars systems are optical rangefinders that analyze property of scattered light to measure distances. Most of them
emit a short light impulsion towards a target and record the reflected signal. This signal is then processed to extract
the distance between the lidar system and the target.
Topographical lidar systems are such systems embedded in airborne platforms. They measure distances between
the platform and the Earth, so as to deliver information on the Earths topography (see 1 for more details). As you can notice, this waveform is a 80-bin-length signal with a single peak.
1 Mallet, C. and Bretar, F. Full-Waveform Topographic Lidar: State-of-the-Art. ISPRS Journal of Photogrammetry and Remote Sensing 2 The data used for this tutorial are part of the demonstration data available for the FullAnalyze software and were kindly provided by the
64(1), pp.1-16, January 2009 http://dx.doi.org/10.1016/j.isprsjprs.2008.09.007 GIS DRAIX.
1.5. Scipy : high-level scientific computing 129 1.5. Scipy : high-level scientific computing 130
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
The signal is very simple and can be modeled as a single Gaussian function and an offset corresponding to the Try with a more complex waveform (for instance data/waveform_2.npy) that contains three signif-
background noise. To fit the signal with the function, we must: icant peaks. You must adapt the model which is now a sum of Gaussian functions instead of only one
Gaussian peak.
define the model
propose an initial solution
call scipy.optimize.leastsq
where
coeffs[0] is (noise)
coeffs[1] is (amplitude)
coeffs[2] is (center)
coeffs[3] is (width)
Initial solution An approximative initial solution that we can find from looking at the graph is for instance:
>>> x0 = np.array([3, 30, 15, 1], dtype=float)
Fit scipy.optimize.leastsq minimizes the sum of squares of the function given as an argument. Basi-
cally, the function to minimize is the residuals (the difference between the data and the model):
In some cases, writing an explicit function to compute the Jacobian is faster than letting leastsq esti-
>>> def residuals(coeffs, y, t): mate it numerically. Create a function to compute the Jacobian of the residuals and use it as an input for
... return y - model(t, coeffs) leastsq.
So lets get our solution by calling scipy.optimize.leastsq() with the following arguments: When we want to detect very small peaks in the signal, or when the initial guess is too far from a good
solution, the result given by the algorithm is often not satisfying. Adding constraints to the parameters of
the function to minimize
the model enables to overcome such limitations. An example of a priori knowledge we can add is the sign
an initial solution of our variables (which are all positive).
the additional arguments to pass to the function With the following initial solution:
>>> from scipy.optimize import leastsq >>> x0 = np.array([3, 50, 20, 1], dtype=float)
>>> x, flag = leastsq(residuals, x0, args=(waveform_1, t))
>>> print(x) compare the result of scipy.optimize.leastsq() and what you can get with
[ 2.70363341 27.82020742 15.47924562 3.05636228] scipy.optimize.fmin_slsqp() when adding boundary constraints.
Remark: from scipy v0.8 and above, you should rather use scipy.optimize.curve_fit() which takes
the model and the data as arguments, so you dont need to define the residuals any more.
1.5. Scipy : high-level scientific computing 131 1.5. Scipy : high-level scientific computing 132
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Image processing application: counting bubbles and unmolten grains Example of solution for the image processing exercise: unmolten grains in glass
1. Open the image file MV_HFV_012.jpg and display it. Browse through the keyword arguments in the
docstring of imshow to display the image with the right orientation (origin in the bottom left corner, and
not the upper left corner as for standard arrays).
2. Crop the image to remove the lower panel with measure information.
1. Open the image file MV_HFV_012.jpg and display it. Browse through the keyword arguments in the docstring
of imshow to display the image with the right orientation (origin in the bottom left corner, and not the upper >>> dat = dat[:-60]
left corner as for standard arrays).
3. Slightly filter the image with a median filter in order to refine its histogram. Check how the histogram
This Scanning Element Microscopy image shows a glass sample (light gray matrix) with some bubbles (on black) changes.
and unmolten sand grains (dark gray). We wish to determine the fraction of the sample covered by these three
phases, and to estimate the typical size of sand grains and bubbles, their sizes, etc. >>> filtdat = ndimage.median_filter(dat, size=(7,7))
>>> hi_dat = np.histogram(dat, bins=np.arange(256))
2. Crop the image to remove the lower panel with measure information. >>> hi_filtdat = np.histogram(filtdat, bins=np.arange(256))
3. Slightly filter the image with a median filter in order to refine its histogram. Check how the histogram changes.
4. Using the histogram of the filtered image, determine thresholds that allow to define masks for sand pixels, glass
pixels and bubble pixels. Other option (homework): write a function that determines automatically the thresholds
from the minima of the histogram.
5. Display an image in which the three phases are colored with three different colors.
6. Use mathematical morphology to clean the different phases.
7. Attribute labels to all bubbles and sand grains, and remove from the sand mask grains that are smaller than 10
pixels. To do so, use ndimage.sum or np.bincount to compute the grain sizes.
8. Compute the mean size of bubbles.
Proposed solution
1.5. Scipy : high-level scientific computing 133 1.5. Scipy : high-level scientific computing 134
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
4. Using the histogram of the filtered image, determine thresholds that allow to define masks for sand pixels, 6. Use mathematical morphology to clean the different phases.
glass pixels and bubble pixels. Other option (homework): write a function that determines automatically
>>> sand_op = ndimage.binary_opening(sand, iterations=2)
the thresholds from the minima of the histogram.
>>> void = filtdat <= 50 7. Attribute labels to all bubbles and sand grains, and remove from the sand mask grains that are smaller than
>>> sand = np.logical_and(filtdat > 50, filtdat <= 114) 10 pixels. To do so, use ndimage.sum or np.bincount to compute the grain sizes.
>>> glass = filtdat > 114
>>> sand_labels, sand_nb = ndimage.label(sand_op)
>>> sand_areas = np.array(ndimage.sum(sand_op, sand_labels, np.arange(sand_labels.max()+1)))
5. Display an image in which the three phases are colored with three different colors.
>>> mask = sand_areas > 100
>>> phases = void.astype(np.int) + 2*glass.astype(np.int) + 3*sand.astype(np.int) >>> remove_small_sand = mask[sand_labels.ravel()].reshape(sand_labels.shape)
1.5. Scipy : high-level scientific computing 135 1.5. Scipy : high-level scientific computing 136
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
(1699.875, 65.0)
In Ipython it is not possible to open a separated window for help and documentation; however one can always open In [3]: import numpy as np
In [4]: %psearch np.diag*
np.diag
np.diagflat
np.diagonal
1.6. Getting help and finding documentation 137 1.6. Getting help and finding documentation 138
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Iterators
Simplicity
Duplication of effort is wasteful, and replacing the various home-grown approaches with a standard feature
Advanced topics usually ends up making things more readable, and interoperable as well.
Guido van Rossum Adding Optional Static Typing to Python
An iterator is an object adhering to the iterator protocol basically this means that it has a next method,
which, when called, returns the next item in the sequence, and when theres nothing to return, raises the
StopIteration exception.
This part of the Scipy lecture notes is dedicated to advanced usage. It strives to educate the proficient Python coder An iterator object allows to loop just once. It holds the state (position) of a single iteration, or from the other side,
to be an expert and tackles various specific topics. each loop over a sequence requires a single iterator object. This means that we can iterate over the same sequence
more than once concurrently. Separating the iteration logic from the sequence allows us to have more than one
way of iteration.
Calling the __iter__ method on a container to create an iterator object is the most straightforward way to get
hold of an iterator. The iter function does that for us, saving a few keystrokes.
2.1 Advanced Python Constructs >>> nums = [1, 2, 3] # note that ... varies: these are different objects
>>> iter(nums)
<...iterator object at ...>
Author Zbigniew Jedrzejewski-Szmek >>> nums.__iter__()
<...iterator object at ...>
This section covers some features of the Python language which can be considered advanced in the sense that >>> nums.__reversed__()
not every language has them, and also in the sense that they are more useful in more complicated programs or <...reverseiterator object at ...>
libraries, but not in the sense of being particularly specialized, or particularly complicated.
>>> it = iter(nums)
It is important to underline that this chapter is purely about the language itself about features supported through
>>> next(it)
special syntax complemented by functionality of the Python stdlib, which could not be implemented through
1
clever external modules. >>> next(it)
The process of developing the Python programming language, its syntax, is very transparent; proposed changes 2
are evaluated from various angles and discussed via Python Enhancement Proposals PEPs. As a result, features >>> next(it)
3
described in this chapter were added after it was shown that they indeed solve real problems and that their use is
>>> next(it)
as simple as possible.
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
Chapters contents StopIteration
Traceback (most recent call last):
Iterators, generator expressions and generators (page 140) File "<stdin>", line 1, in <module>
Iterators (page 140) StopIteration
Generator expressions (page 141)
Generators (page 141) When used in a loop, StopIteration is swallowed and causes the loop to finish. But with explicit invocation,
Bidirectional communication (page 142) we can see that once the iterator is exhausted, accessing it raises an exception.
Chaining generators (page 144) Using the for..in loop also uses the __iter__ method. This allows us to transparently start the iteration over a
Decorators (page 144) sequence. But if we already have the iterator, we want to be able to use it in an for loop in the same way. In order
Replacing or tweaking the original object (page 145) to achieve this, iterators in addition to next are also required to have a method called __iter__ which returns
Decorators implemented as classes and as functions (page 145) the iterator (self).
Copying the docstring and other attributes of the original function (page 147)
Examples in the standard library (page 148) Support for iteration is pervasive in Python: all sequences and unordered containers in the standard library allow
Deprecation of functions (page 150) this. The concept is also stretched to other things: e.g. file objects support iteration over lines.
A while-loop removing decorator (page 151) >>> f = open('/etc/fstab')
A plugin registration system (page 151) >>> f is f.__iter__()
Context managers (page 152) True
Catching exceptions (page 153)
Using generators to define context managers (page 154) The file is an iterator itself and its __iter__ method doesnt create a separate object: only a single thread of
sequential access is allowed.
Generator expressions Lets go over the life of the single invocation of the generator function.
>>> def f():
A second way in which iterator objects are created is through generator expressions, the basis for list compre- ... print("-- start --")
hensions. To increase clarity, a generator expression must always be enclosed in parentheses or an expression. If ... yield 3
round parentheses are used, then a generator iterator is created. If rectangular parentheses are used, the process is ... print("-- middle --")
short-circuited and we get a list. ... yield 4
... print("-- finished --")
>>> (i for i in nums)
>>> gen = f()
<generator object <genexpr> at 0x...>
>>> next(gen)
>>> [i for i in nums]
-- start --
[1, 2, 3]
3
>>> list(i for i in nums)
>>> next(gen)
[1, 2, 3]
-- middle --
4
The list comprehension syntax also extends to dictionary and set comprehensions. A set is created when >>> next(gen)
the generator expression is enclosed in curly braces. A dict is created when the generator expression contains -- finished --
pairs of the form key:value: Traceback (most recent call last):
>>> {i for i in range(3)} ...
set([0, 1, 2]) StopIteration
>>> {i:i**2 for i in range(3)} Traceback (most recent call last):
{0: 0, 1: 1, 2: 4} ...
StopIteration
One gotcha should be mentioned: in old Pythons the index variable (i) would leak, and in versions >= 3 this is
Contrary to a normal function, where executing f() would immediately cause the first print to be executed,
fixed.
gen is assigned without executing any statements in the function body. Only when gen.next() is invoked
by next, the statements up to the first yield are executed. The second next prints -- middle -- and
Generators execution halts on the second yield. The third next prints -- finished -- and falls of the end of the
function. Since no yield was reached, an exception is raised.
What happens with the function after a yield, when the control passes to the caller? The state of each generator
Generators is stored in the generator object. From the point of view of the generator function, is looks almost as if it was
A generator is a function that produces a sequence of results instead of a single value. running in a separate thread, but this is just an illusion: execution is strictly single-threaded, but the interpreter
David Beazley A Curious Course on Coroutines and Concurrency keeps and restores the state in between the requests for the next value.
Why are generators useful? As noted in the parts about iterators, a generator function is just a different way to
A third way to create iterator objects is to call a generator function. A generator is a function containing the create an iterator object. Everything that can be done with yield statements, could also be done with next
keyword yield. It must be noted that the mere presence of this keyword completely changes the nature of the methods. Nevertheless, using a function and having the interpreter perform its magic to create an iterator has
function: this yield statement doesnt have to be invoked, or even reachable, but causes the function to be advantages. A function can be much shorter than the definition of a class with the required next and __iter__
marked as a generator. When a normal function is called, the instructions contained in the body start to be methods. What is more important, it is easier for the author of the generator to understand the state which is
executed. When a generator is called, the execution stops before the first instruction in the body. An invocation kept in local variables, as opposed to instance attributes, which have to be used to pass data between consecutive
of a generator function creates a generator object, adhering to the iterator protocol. As with normal function invocations of next on an iterator object.
invocations, concurrent and recursive invocations are allowed. A broader question is why are iterators useful? When an iterator is used to power a loop, the loop becomes very
When next is called, the function is executed until the first yield. Each encountered yield statement gives a simple. The code to initialise the state, to decide if the loop is finished, and to find the next value is extracted into
value becomes the return value of next. After executing the yield statement, the execution of this function is a separate place. This highlights the body of the loop the interesting part. In addition, it is possible to reuse the
suspended. iterator code in other places.
2.1. Advanced Python Constructs 141 2.1. Advanced Python Constructs 142
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
The second of the new methods is throw(type, value=None, traceback=None) which is equivalent next or __next__?
to:
In Python 2.x, the iterator method to retrieve the next value is called next. It is invoked implicitly through
raise type, value, traceback the global function next, which means that it should be called __next__. Just like the global func-
tion iter calls __iter__. This inconsistency is corrected in Python 3.x, where it.next becomes
at the point of the yield statement. it.__next__. For other generator methods send and throw the situation is more complicated,
Unlike raise (which immediately raises an exception from the current execution point), throw() first resumes because they are not called implicitly by the interpreter. Nevertheless, theres a proposed syntax extension
the generator, and only then raises the exception. The word throw was picked because it is suggestive of putting to allow continue to take an argument which will be passed to send of the loops iterator. If this exten-
the exception in another location, and is associated with exceptions in other languages. sion is accepted, its likely that gen.send will become gen.__send__. The last of generator methods,
close, is pretty obviously named incorrectly, because it is already invoked implicitly.
What happens when an exception is raised inside the generator? It can be either raised explicitly or when executing
some statements or it can be injected at the point of a yield statement by means of the throw() method.
In either case, such an exception propagates in the standard manner: it can be intercepted by an except or
finally clause, or otherwise it causes the execution of the generator function to be aborted and propagates in Chaining generators
the caller.
For completeness sake, its worth mentioning that generator iterators also have a close() method, which can Note: This is a preview of PEP 380 (not yet implemented, but accepted for Python 3.3).
be used to force a generator that would otherwise be able to provide more values to finish immediately. It allows
the generator __del__ method to destroy objects holding the state of generator. Lets say we are writing a generator and we want to yield a number of values generated by a second generator,
a subgenerator. If yielding of values is the only concern, this can be performed without much difficulty using a
Lets define a generator which just prints what is passed in through send and throw.
loop such as
>>> import itertools
subgen = some_other_generator()
>>> def g():
for v in subgen:
... print('--start--')
yield v
... for i in itertools.count():
... print('--yielding %i--' % i)
... try: However, if the subgenerator is to interact properly with the caller in the case of calls to send(), throw()
... ans = yield i and close(), things become considerably more difficult. The yield statement has to be guarded by a
... except GeneratorExit: try..except..finally structure similar to the one defined in the previous section to debug the generator function.
... print('--closing--') Such code is provided in PEP 380, here it suffices to say that new syntax to properly yield from a subgenerator is
... raise being introduced in Python 3.3:
... except Exception as e:
... print('--yield raised %r--' % e) yield from some_other_generator()
... else:
... print('--yield returned %s--' % ans) This behaves like the explicit loop above, repeatedly yielding values from some_other_generator until it is
exhausted, but also forwards send, throw and close to the subgenerator.
>>> it = g()
>>> next(it)
--start-- 2.1.2 Decorators
--yielding 0--
0
>>> it.send(11) Summary
--yield returned 11--
--yielding 1-- This amazing feature appeared in the language almost apologetically and with concern that it might not be
1 that useful.
>>> it.throw(IndexError) Bruce Eckel An Introduction to Python Decorators
--yield raised IndexError()--
--yielding 2--
2 Since a function or a class are objects, they can be passed around. Since they are mutable objects, they can be
>>> it.close() modified. The act of altering a function or class object after it has been constructed but before is is bound to its
--closing-- name is called decorating.
There are two things hiding behind the name decorator one is the function which does the work of decorating,
i.e. performs the real work, and the other one is the expression adhering to the decorator syntax, i.e. an at-symbol
and the name of the decorating function.
Function can be decorated by using the decorator syntax for functions:
@decorator #
def function(): #
pass
2.1. Advanced Python Constructs 143 2.1. Advanced Python Constructs 144
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
An expression starting with @ placed before the function definition is the decorator . The part after @ must doing decoration
be a simple expression, usually this is just the name of a function or class. This part is evaluated first, and >>> function()
after the function defined below is ready, the decorator is called with the newly defined function object as inside function
the single argument. The value returned by the decorator is attached to the original name of the function.
>>> def decorator_with_arguments(arg):
Decorators can be applied to functions and to classes. For classes the semantics are identical the original class ... print("defining the decorator")
definition is used as an argument to call the decorator and whatever is returned is assigned under the original name. ... def _decorator(function):
Before the decorator syntax was implemented (PEP 318), it was possible to achieve the same effect by assigning ... # in this inner function, arg is available too
... print("doing decoration, %r" % arg)
the function or class object to a temporary variable and then invoking the decorator explicitly and then assigning
... return function
the return value to the name of the function. This sounds like more typing, and it is, and also the name of the
... return _decorator
decorated function doubling as a temporary variable must be used at least three times, which is prone to errors. >>> @decorator_with_arguments("abc")
Nevertheless, the example above is equivalent to: ... def function():
... print("inside function")
def function(): #
defining the decorator
pass
doing decoration, 'abc'
function = decorator(function) #
>>> function()
inside function
Decorators can be stacked the order of application is bottom-to-top, or inside-out. The semantics are such
that the originally defined function is used as an argument for the first decorator, whatever is returned by the first The two trivial decorators above fall into the category of decorators which return the original function. If they
decorator is used as an argument for the second decorator, ..., and whatever is returned by the last decorator is were to return a new function, an extra level of nestedness would be required. In the worst case, three levels of
attached under the name of the original function. nested functions.
The decorator syntax was chosen for its readability. Since the decorator is specified before the header of the >>> def replacing_decorator_with_args(arg):
function, it is obvious that its is not a part of the function body and its clear that it can only operate on the whole ... print("defining the decorator")
function. Because the expression is prefixed with @ is stands out and is hard to miss (in your face, according to ... def _decorator(function):
the PEP :) ). When more than one decorator is applied, each one is placed on a separate line in an easy to read ... # in this inner function, arg is available too
way. ... print("doing decoration, %r" % arg)
... def _wrapper(*args, **kwargs):
... print("inside wrapper, %r %r" % (args, kwargs))
Replacing or tweaking the original object ... return function(*args, **kwargs)
... return _wrapper
Decorators can either return the same function or class object or they can return a completely different object. ... return _decorator
In the first case, the decorator can exploit the fact that function and class objects are mutable and add attributes, >>> @replacing_decorator_with_args("abc")
e.g. add a docstring to a class. A decorator might do something useful even without modifying the object, for ... def function(*args, **kwargs):
example register the decorated class in a global registry. In the second case, virtually anything is possible: when ... print("inside function, %r %r" % (args, kwargs))
... return 14
something different is substituted for the original function or class, the new object can be completely different.
defining the decorator
Nevertheless, such behaviour is not the purpose of decorators: they are intended to tweak the decorated object, not
doing decoration, 'abc'
do something unpredictable. Therefore, when a function is decorated by replacing it with a different function, >>> function(11, 12)
the new function usually calls the original function, after doing some preparatory work. Likewise, when a class is inside wrapper, (11, 12) {}
decorated by replacing if with a new class, the new class is usually derived from the original class. When the inside function, (11, 12) {}
purpose of the decorator is to do something every time, like to log every call to a decorated function, only the 14
second type of decorators can be used. On the other hand, if the first type is sufficient, it is better to use it, because
it is simpler. The _wrapper function is defined to accept all positional and keyword arguments. In general we cannot know
what arguments the decorated function is supposed to accept, so the wrapper function just passes everything to the
wrapped function. One unfortunate consequence is that the apparent argument list is misleading.
Decorators implemented as classes and as functions
Compared to decorators defined as functions, complex decorators defined as classes are simpler. When an object
The only requirement on decorators is that they can be called with a single argument. This means that decorators is created, the __init__ method is only allowed to return None, and the type of the created object cannot be
can be implemented as normal functions, or as classes with a __call__ method, or in theory, even as lambda changed. This means that when a decorator is defined as a class, it doesnt make much sense to use the argument-
functions. less form: the final decorated object would just be an instance of the decorating class, returned by the constructor
call, which is not very useful. Therefore its enough to discuss class-based decorators where arguments are given
Lets compare the function and class approaches. The decorator expression (the part after @) can be either just a in the decorator expression and the decorator __init__ method is used for decorator construction.
name, or a call. The bare-name approach is nice (less to type, looks cleaner, etc.), but is only possible when no
arguments are needed to customise the decorator. Decorators written as functions can be used in those two cases: >>> class decorator_class(object):
... def __init__(self, arg):
>>> def simple_decorator(function): ... # this method is called in the decorator expression
... print("doing decoration") ... print("in decorator init, %s" % arg)
... return function ... self.arg = arg
>>> @simple_decorator ... def __call__(self, function):
... def function(): ... # this method is called to do the job
... print("inside function") ... print("in decorator call, %s" % self.arg)
2.1. Advanced Python Constructs 145 2.1. Advanced Python Constructs 146
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
@classmethod
def fromfile(cls, file):
data = numpy.load(file)
return cls(data)
2.1. Advanced Python Constructs 147 2.1. Advanced Python Constructs 148
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
name would then be prefixed with _), or when we want the user to think of the method as connected to the <property object at 0x...>
class, despite an implementation which doesnt require this. >>> D.a.fget
<function ...>
property is the pythonic answer to the problem of getters and setters. A method decorated with
>>> D.a.fset
property becomes a getter which is automatically called on attribute access.
<function ...>
>>> class A(object): >>> D.a.fdel
... @property <function ...>
... def a(self): >>> d = D() # ... varies, this is not the same `a` function
... "an important attribute" >>> d.a
... return "a value" getting 1
>>> A.a 1
<property object at 0x...> >>> d.a = 2
>>> A().a setting 2
'a value' >>> del d.a
deleting
In this example, A.a is an read-only attribute. It is also documented: help(A) includes the docstring for >>> d.a
attribute a taken from the getter method. Defining a as a property allows it to be a calculated on the fly, and getting 1
has the side effect of making it read-only, because no setter is defined. 1
To have a setter and a getter, two methods are required, obviously. Since Python 2.6 the following syntax is Properties are a bit of a stretch for the decorator syntax. One of the premises of the decorator syntax that
preferred: the name is not duplicated is violated, but nothing better has been invented so far. It is just good style to
use the same name for the getter, setter, and deleter methods.
class Rectangle(object):
def __init__(self, edge): Some newer examples include:
self.edge = edge
functools.lru_cache memoizes an arbitrary function maintaining a limited cache of argu-
@property ments:answer pairs (Python 3.2)
def area(self):
functools.total_ordering is a class decorator which fills in missing ordering methods (__lt__,
"""Computed area.
__gt__, __le__, ...) based on a single available one (Python 2.7).
Setting this updates the edge length to the proper value.
"""
Deprecation of functions
return self.edge**2
@area.setter Lets say we want to print a deprecation warning on stderr on the first invocation of a function we dont like
def area(self, area): anymore. If we dont want to modify the function, we can use a decorator:
self.edge = area ** 0.5 class deprecated(object):
"""Print a deprecation warning once on first use of the function.
The way that this works, is that the property decorator replaces the getter method with a property object.
This object in turn has three methods, getter, setter, and deleter, which can be used as decorators. >>> @deprecated() # doctest: +SKIP
Their job is to set the getter, setter and deleter of the property object (stored as attributes fget, fset, and ... def f():
fdel). The getter can be set like in the example above, when creating the object. When defining the setter, ... pass
we already have the property object under area, and we add the setter to it by using the setter method. >>> f() # doctest: +SKIP
All this happens when we are creating the class. f is deprecated
"""
Afterwards, when an instance of the class has been created, the property object is special. When the inter- def __call__(self, func):
preter executes attribute access, assignment, or deletion, the job is delegated to the methods of the property self.func = func
object. self.count = 0
return self._wrapper
To make everything crystal clear, lets define a debug example: def _wrapper(self, *args, **kwargs):
>>> class D(object): self.count += 1
... @property if self.count == 1:
... def a(self): print self.func.__name__, 'is deprecated'
... print("getting 1") return self.func(*args, **kwargs)
... return 1
... @a.setter It can also be implemented as a function:
... def a(self, value):
def deprecated(func):
... print("setting %r" % value)
"""Print a deprecation warning once on first use of the function.
... @a.deleter
... def a(self):
>>> @deprecated # doctest: +SKIP
... print("deleting")
... def f():
>>> D.a
... pass
2.1. Advanced Python Constructs 149 2.1. Advanced Python Constructs 150
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Lets say we have function which returns a lists of things, and this list created by running a loop. If we dont know See also:
how many objects will be needed, the standard way to do this is something like: More examples and reading
def find_answers(): PEP 318 (function and method decorator syntax)
answers = []
while True: PEP 3129 (class decorator syntax)
ans = look_for_next_answer()
http://wiki.python.org/moin/PythonDecoratorLibrary
if ans is None:
break http://docs.python.org/dev/library/functools.html
answers.append(ans)
return answers http://pypi.python.org/pypi/decorator
Bruce Eckel
This is fine, as long as the body of the loop is fairly compact. Once it becomes more complicated, as often happens
in real code, this becomes pretty unreadable. We could simplify this by using yield statements, but then the user Decorators I: Introduction to Python Decorators
would have to explicitly call list(find_answers()).
Python Decorators II: Decorator Arguments
We can define a decorator which constructs the list for us:
Python Decorators III: A Decorator-Based Build System
def vectorized(generator_func):
def wrapper(*args, **kwargs):
return list(generator_func(*args, **kwargs)) 2.1.3 Context managers
return functools.update_wrapper(wrapper, generator_func)
A context manager is an object with __enter__ and __exit__ methods which can be used in the with state-
Our function then becomes: ment:
@vectorized with manager as var:
def find_answers(): do_something(var)
while True:
ans = look_for_next_answer() is in the simplest case equivalent to
if ans is None:
break var = manager.__enter__()
yield ans try:
do_something(var)
finally:
A plugin registration system manager.__exit__()
In other words, the context manager protocol defined in PEP 343 permits the extraction of the boring part of a
This is a class decorator which doesnt modify the class, but just puts it in a global registry. It falls into the category
try..except..finally structure into a separate class leaving only the interesting do_something block.
of decorators returning the original object:
1. The __enter__ method is called first. It can return a value which will be assigned to var. The as-part
class WordProcessor(object):
PLUGINS = []
is optional: if it isnt present, the value returned by __enter__ is simply ignored.
def process(self, text): 2. The block of code underneath with is executed. Just like with try clauses, it can either execute success-
for plugin in self.PLUGINS: fully to the end, or it can break, continue or return, or it can throw an exception. Either way, after the
text = plugin().cleanup(text) block is finished, the __exit__ method is called. If an exception was thrown, the information about the
return text
exception is passed to __exit__, which is described below in the next subsection. In the normal case,
@classmethod
exceptions can be ignored, just like in a finally clause, and will be rethrown after __exit__ is finished.
def plugin(cls, plugin): Lets say we want to make sure that a file is closed immediately after we are done writing to it:
cls.PLUGINS.append(plugin)
2.1. Advanced Python Constructs 151 2.1. Advanced Python Constructs 152
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
The common use for try..finally is releasing resources. Various different cases are implemented similarly: Using generators to define context managers
in the __enter__ phase the resource is acquired, in the __exit__ phase it is released, and the exception, if
thrown, is propagated. As with files, theres often a natural operation to perform after the object has been used and When discussing generators (page 141), it was said that we prefer generators to iterators implemented as classes
it is most convenient to have the support built in. With each release, Python provides support in more places: because they are shorter, sweeter, and the state is stored as local, not instance, variables. On the other hand, as
all file-like objects: described in Bidirectional communication (page 142), the flow of data between the generator and its caller can
be bidirectional. This includes exceptions, which can be thrown into the generator. We would like to implement
file automatically closed context managers as special generator functions. In fact, the generator protocol was designed to support this use
fileinput, tempfile (py >= 3.2) case.
2.1. Advanced Python Constructs 153 2.1. Advanced Python Constructs 154
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Chapter contents
Here we use a decorator to turn generator functions into context managers! Life of ndarray (page 156)
Its... (page 156)
Block of memory (page 157)
2.2 Advanced Numpy Data types (page 158)
Indexing scheme: strides (page 163)
Findings in dissection (page 169)
Author: Pauli Virtanen Universal functions (page 169)
Numpy is at the base of Pythons scientific stack of tools. Its purpose to implement efficient operations on many What they are? (page 169)
items in a block of memory. Understanding how it works in detail helps in making efficient use of its flexibility, Exercise: building an ufunc from scratch (page 170)
taking useful shortcuts. Solution: building an ufunc from scratch (page 174)
Generalized ufuncs (page 177)
This section covers: Interoperability features (page 178)
Anatomy of Numpy arrays, and its consequences. Tips and tricks. Sharing multidimensional, typed data (page 178)
The old buffer protocol (page 178)
Universal functions: what, why, and what to do if you want a new one. The old buffer protocol (page 179)
Integration with other tools: Numpy offers several ways to wrap any data in an ndarray, without unnecessary Array interface protocol (page 180)
copies. Array siblings: chararray, maskedarray, matrix (page 181)
chararray: vectorized string operations (page 181)
Recently added features, and whats in them: PEP 3118 buffers, generalized ufuncs, ... masked_array missing data (page 181)
recarray: purely convenience (page 184)
Prerequisites matrix: convenience? (page 184)
Summary (page 184)
Numpy Contributing to Numpy/Scipy (page 184)
Cython Why (page 184)
Pillow (Python imaging library, used in a couple of examples) Reporting bugs (page 184)
Contributing to documentation (page 185)
Contributing features (page 186)
How to help, in general (page 186)
Its...
ndarray =
block of memory + indexing scheme + data type descriptor
raw data
how to locate an element
how to interpret an element
>>> x[0] = 9
>>> y
array([9, 2, 3])
x is a string (in Python 3 a bytes), we can represent its data as an array of ints:
>>> y = np.frombuffer(x, dtype=np.int8)
>>> y.data
<... at ...>
>>> y.base is x
True
wavreader.py on assignment
Casting
Casting in arithmetic, in nutshell:
only type (not value!) of operands matters
largest safe type able to represent both is picked
scalars can lose to arrays in some situations
Casting in general copies data:
Note: Exact rules: see documentation: http://docs.scipy.org/doc/numpy/reference/ufuncs.html#casting-rules >>> x = np.zeros((10, 10, 4), dtype=np.int8)
>>> x[:, :, 0] = 1
>>> x[:, :, 1] = 2
>>> x[:, :, 2] = 3
Re-interpretation / viewing >>> x[:, :, 3] = 4
Data block in memory (4 bytes)
where the last three dimensions are the R, B, and G, and alpha channels.
0x01 || 0x02 || 0x03 || 0x04
How to make a (10, 10) structured array with field names r, g, b, a without copying data?
4 of uint8, OR, >>> y = ...
4 of int8, OR,
>>> assert (y['r'] == 1).all()
2 of int16, OR, >>> assert (y['g'] == 2).all()
>>> assert (y['b'] == 3).all()
1 of int32, OR,
>>> assert (y['a'] == 4).all()
1 of float32, OR,
Solution
...
>>> y = x.view([('r', 'i1'),
How to switch from one to another? ... ('g', 'i1'),
1. Switch the dtype: ... ('b', 'i1'),
... ('a', 'i1')]
>>> x = np.array([1, 2, 3, 4], dtype=np.uint8) ... )[:, :, 0]
>>> x.dtype = "<i2"
>>> x
array([ 513, 1027], dtype=int16)
>>> 0x0201, 0x0403
(513, 1027)
Warning: Another array taking exactly 4 bytes of memory: >>> y = np.array(x, order='F')
>>> y.strides
>>> y = np.array([[1, 3], [2, 4]], dtype=np.uint8).transpose() (2, 4)
>>> x = y.copy() >>> str(y.data)
>>> x '\x01\x00\x04\x00\x02\x00\x05\x00\x03\x00\x06\x00'
array([[1, 2],
[3, 4]], dtype=uint8) Need to jump 2 bytes to find the next row
>>> y
array([[1, 2], Need to jump 4 bytes to find the next column
[3, 4]], dtype=uint8) Similarly to higher dimensions:
>>> x.view(np.int16)
array([[ 513], C: last dimensions vary fastest (= smaller strides)
[1027]], dtype=int16)
F: first dimensions vary fastest
>>> 0x0201, 0x0403
(513, 1027)
>>> y.view(np.int16) shape = (1 , 2 , ..., )
array([[ 769, 1026]], dtype=int16) strides = (1 , 2 , ..., )
What happened?
= +1 +2 ... itemsize
... we need to look into what x[0,1] actually means
= 1 2 ...1 itemsize
Indexing scheme: strides Transposition does not affect the memory layout of the data, only strides
>>> x.strides
Main point
(2, 1)
>>> y.strides
The question: (1, 2)
Need to jump 6 bytes to find the next row >>> x = np.zeros((10, 10, 10), dtype=np.float)
>>> x.strides
Need to jump 2 bytes to find the next column
Warning: as_strided does not check that you stay inside the memory block bounds...
>>> x = np.array([1, 2, 3, 4], dtype=np.int16)
>>> y = np.array([5, 6, 7], dtype=np.int16)
>>> x = np.array([1, 2, 3, 4], dtype=np.int16) >>> x[np.newaxis,:] * y[:,np.newaxis]
>>> as_strided(x, strides=(2*2, ), shape=(2, )) array([[ 5, 10, 15, 20],
array([1, 3], dtype=int16) [ 6, 12, 18, 24],
>>> x[::2] [ 7, 14, 21, 28]], dtype=int16)
array([1, 3], dtype=int16)
Internally, array broadcasting is indeed implemented using 0-strides.
See also:
stride-fakedims.py More tricks: diagonals
Exercise
See also:
array([1, 2, 3, 4], dtype=np.int8)
stride-diagonals.py
-> array([[1, 2, 3, 4],
[1, 2, 3, 4],
Challenge
[1, 2, 3, 4]], dtype=np.int8) Pick diagonal entries of the matrix: (assume C memory order):
However,
>>> y.flags.owndata CPU pulls data from main memory to its cache in blocks
False
If many array items consecutively operated on fit in a single block (small stride):
Note This behavior has changed: before numpy 1.9, np.diag would make a copy.
fewer transfers needed
>>> y = np.array([[1, 2], [3, 4]]) * This function must compute the ufunc for many values at once,
>>> y -= y.T.copy() * in the way shown below.
>>> y */
array([[ 0, -1], char *input_1 = (char*)args[0];
[ 1, 0]]) char *input_2 = (char*)args[1];
char *output = (char*)args[2];
x and x.transpose() share data int i;
Make ufunc called mandel(z0, c) that computes: # Say, use 100 as the maximum number of iterations, and 1000
z = z0 # as the cutoff for z.real**2 + z.imag**2.
for k in range(iterations): #
z = z*z + c
TODO: mandelbrot iteration should go here
say, 100 iterations or until z.real**2 + z.imag**2 > 1000. Use it to determine which c are in the
# Return the answer for this point
Mandelbrot set.
z_out[0] = z
Our function is a simple one, so make use of the PyUFunc_* helpers.
Write it in Cython # Boilerplate Cython definitions
See also: #
# The litany below is particularly long, but you don't really need to
mandel.pyx, mandelplot.py # read this part; it just pulls in stuff from the Numpy C headers.
# ----------------------------------------------------------
#
# Fix the parts marked by TODO cdef extern from "numpy/arrayobject.h":
# void import_array()
ctypedef int npy_intp
# cdef enum NPY_TYPES:
# Compile this file by (Cython >= 0.12 required because of the complex vars) NPY_DOUBLE
# NPY_CDOUBLE
# cython mandel.pyx NPY_LONG
# python setup.py build_ext -i
# cdef extern from "numpy/ufuncobject.h":
# and try it out with, in this directory, void import_ufunc()
# ctypedef void (*PyUFuncGenericFunction)(char**, npy_intp*, npy_intp*, void*)
# >>> import mandel object PyUFunc_FromFuncAndData(PyUFuncGenericFunction* func, void** data,
# >>> mandel.mandel(0, 1 + 2j) char* types, int ntypes, int nin, int nout,
# int identity, char* name, char* doc, int c)
#
# List of pre-defined loop functions
# The elementwise function
# ------------------------ void PyUFunc_f_f_As_d_d(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
void PyUFunc_d_d(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
cdef void mandel_single_point(double complex *z_in, void PyUFunc_f_f(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
double complex *c_in, void PyUFunc_g_g(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
double complex *z_out) nogil: void PyUFunc_F_F_As_D_D(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
# void PyUFunc_F_F(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
# The Mandelbrot iteration void PyUFunc_D_D(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
# void PyUFunc_G_G(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
void PyUFunc_ff_f_As_dd_d(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
# void PyUFunc_ff_f(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
# Some points of note: void PyUFunc_dd_d(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
# void PyUFunc_gg_g(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
# - It's *NOT* allowed to call any Python functions here. void PyUFunc_FF_F_As_DD_D(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
# void PyUFunc_DD_D(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
# The Ufunc loop runs with the Python Global Interpreter Lock released. void PyUFunc_FF_F(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
# Hence, the ``nogil``. void PyUFunc_GG_G(char** args, npy_intp* dimensions, npy_intp* steps, void* func)
#
# - And so all local variables must be declared with ``cdef``
# # Required module initialization
# - Note also that this function receives *pointers* to the data # ------------------------------
#
import_array()
cdef double complex z = z_in[0] import_ufunc()
cdef double complex c = c_in[0]
cdef int k # the integer we use in the for loop
# The actual ufunc declaration
# # ----------------------------
# TODO: write the Mandelbrot iteration for one point here,
# as you would write it in Python. cdef PyUFuncGenericFunction loop_func[1]
# cdef char input_output_types[3]
import_array()
import_ufunc()
input_output_types[0] = NPY_CDOUBLE
input_output_types[1] = NPY_CDOUBLE Several accepted input types
input_output_types[2] = NPY_CDOUBLE
E.g. supporting both single- and double-precision versions
elementwise_funcs[0] = <void*>mandel_single_point
cdef void mandel_single_point(double complex *z_in,
mandel = PyUFunc_FromFuncAndData( double complex *c_in,
loop_func, double complex *z_out) nogil:
elementwise_funcs, ...
input_output_types,
1, # number of supported input types cdef void mandel_single_point_singleprec(float complex *z_in,
2, # number of input args float complex *c_in,
1, # number of output args float complex *z_out) nogil:
0, # `identity` element, never mind this ...
"mandel", # function name
"mandel(z, c) -> computes iterated z*z + c", # docstring cdef PyUFuncGenericFunction loop_funcs[2]
0 # unused cdef char input_output_types[3*2]
) cdef void *elementwise_funcs[1*2]
the last two dimensions became core dimensions, and are modified as per the signature The old buffer protocol
otherwise, the g-ufunc operates elementwise
Only 1-D buffers
matrix multiplication this way could be useful for operating on many small matrices at once
No data type information
Generalized ufunc loop C-level interface; PyBufferProcs tp_as_buffer in the type object
But its integrated into Python (e.g. strings support it)
Matrix multiplication (m,n),(n,p) -> (m,p) Mini-exercise using Pillow (Python Imaging Library):
See also:
pilbuffer.py
Q:
Check what happens if data is now modified, and img saved again.
"""
From buffer
============
Show how to exchange data between numpy and a library that only knows
the buffer interface.
"""
import numpy as np
import Image
#
# Modify the original data, and save again. Array interface protocol
#
# It turns out that PIL, which knows next to nothing about Numpy, Multidimensional buffers
# happily shares the same data.
# Data type information present
Numpy-specific approach; slowly deprecated (but not going away)
x[:,:,1] = 254
img.save('test2.png') Not integrated in Python otherwise
See also:
Documentation: http://docs.scipy.org/doc/numpy/reference/arrays.interface.html
>>> x = np.array([[1, 2], [3, 4]])
>>> x.__array_interface__
{'data': (171694552, False), # memory address of data, is readonly?
'descr': [('', '<i4')], # data type descriptor
'typestr': '<i4', # same, in another form
'strides': None, # strides; or None if in C-order
'shape': (2, 2),
'version': 3,
}
::
Masked mean ignores masked data: Note: Streamlined and more seamless support for dealing with missing data in arrays is making its way into
>>> mx.mean()
Numpy 1.7. Stay tuned!
2.75
>>> np.mean(mx)
2.75
Warning: Not all Numpy functions respect masks, for instance np.dot, so check the return types.
Canadian rangers were distracted when counting hares and lynxes in 1903-1910 and 1917-1918, and got >>> arr = np.array([('a', 1), ('b', 2)], dtype=[('x', 'S1'), ('y', int)])
the numbers are wrong. (Carrot farmers stayed alert, though.) Compute the mean populations over time, >>> arr2 = arr.view(np.recarray)
ignoring the invalid numbers. >>> arr2.x
chararray(['a', 'b'],
>>> data = np.loadtxt('data/populations.txt')
dtype='|S1')
>>> populations = np.ma.masked_array(data[:,1:])
>>> arr2.y
>>> year = data[:, 0]
array([1, 2])
>>> bad_years = (((year >= 1903) & (year <= 1910))
... | ((year >= 1917) & (year <= 1918)))
>>> # '&' means 'and' and '|' means 'or' matrix: convenience?
>>> populations[bad_years, 0] = np.ma.masked
>>> populations[bad_years, 1] = np.ma.masked always 2-D
>>> plt.plot(year, populations, 'o-') Universal functions: elementwise operations, how to make new ones
[<matplotlib.lines.Line2D object at ...>, ...] Ndarray subclasses
Various buffer interfaces for integration with other tools
I'm using Numpy 1.4.1, built from the official tarball, on Windows Contributing features
64 with Visual studio 2008, on Python.org 64-bit Python.
0. Ask on mailing list, if unsure where it should go
0. What are you trying to do?
1. Write a patch, add an enhancement ticket on the bug tracket
1. Small code snippet reproducing the bug (if possible)
2. OR, create a Git branch implementing the feature + add enhancement ticket.
What actually happens
Especially for big/invasive additions
What youd expect
http://projects.scipy.org/numpy/wiki/GitMirror
2. Platform (Windows / Linux / OSX, 32/64 bits, x86/PPC, ...)
http://www.spheredev.org/wiki/Git_for_the_lazy
3. Version of Numpy/Scipy
# Clone numpy repository
>>> print(np.__version__) git clone --origin svn http://projects.scipy.org/git/numpy.git numpy
1... cd numpy
Check that the following is what you expect # Create a feature branch
git checkout -b name-of-my-feature-branch svn/trunk
>>> print(np.__file__)
/...
<edit stuff>
In case you have old/broken Numpy installations lying around. git commit -a
If unsure, try to remove existing Numpy installations, and reinstall...
Create account on http://github.com (or anywhere)
API docs: improvements to docstrings Everyone knows that debugging is twice as hard as writing a program in the first place. So if youre as
clever as you can be when you write it, how will you ever debug it?
* Know some Scipy module well?
User guide We all write buggy code. Accept it. Deal with it.
* Needs to be done eventually. Write your code with testing and debugging in mind.
* Want to think? Come up with a Table of Contents Keep It Simple, Stupid (KISS).
http://scipy.org/Developer_Zone/UG_Toc What is the simplest thing that could possibly work?
Ask on communication channels: Dont Repeat Yourself (DRY).
numpy-discussion list Every piece of knowledge must have a single, unambiguous, authoritative representation within a
system.
scipy-dev list
Constants, algorithms, etc...
Try to limit interdependencies of your code. (Loose Coupling)
2.3 Debugging code
Give your variables, functions and modules meaningful names (not mathematics names)
Author: Gal Varoquaux
pyflakes: fast static analysis
This section explores tools to understand better your code base: debugging, to find and fix bugs.
It is not specific to the scientific Python community, but the strategies that we will employ are tailored to its needs. They are several static analysis tools in Python; to name a few:
pylint
Prerequisites
pychecker
Numpy
pyflakes
IPython
nosetests (http://readthedocs.org/docs/nose/en/latest/) pep8
pyflakes (http://pypi.python.org/pypi/pyflakes)
flake8
gdb for the C-debugging part.
Here we focus on pyflakes, which is the simplest tool.
Fast, simple
Chapters contents Detects syntax errors, missing imports, typos on names.
Avoiding bugs (page 187) Another good recommendation is the flake8 tool which is a combination of pyflakes and pep8. Thus, in addition
Coding best practices to avoid getting in trouble (page 187) to the types of errors that pyflakes catches, flake8 detects violations of the recommendation in PEP8 style guide.
pyflakes: fast static analysis (page 188)
* Running pyflakes on the current edited file (page 188) Integrating pyflakes (or flake8) in your editor or IDE is highly recommended, it does yield productivity gains.
* A type-as-go spell-checker like integration (page 189)
Debugging workflow (page 190)
Running pyflakes on the current edited file
Using the Python debugger (page 190)
Invoking the debugger (page 191)
* Postmortem (page 191) You can bind a key to run pyflakes in the current buffer.
* Step-by-step execution (page 192) In kate Menu: settings -> configure kate
* Other ways of starting a debugger (page 194)
Debugger commands and interaction (page 195) In plugins enable external tools
* Getting help when in the debugger (page 195) In external Tools, add pyflakes:
Debugging segmentation faults using gdb (page 195)
kdialog --title "pyflakes %filename" --msgbox "$(pyflakes %filename)"
In TextMate
2.3.1 Avoiding bugs Menu: TextMate -> Preferences -> Advanced -> Shell variables, add a shell variable:
In vim In your vimrc (binds F5 to pyflakes): In emacs Use the flymake mode with pyflakes, documented on
http://www.plope.com/Members/chrism/flymake-mode : add the following to your .emacs file:
autocmd FileType python let &mp = 'echo "*** running % ***" ; pyflakes %'
autocmd FileType tex,mp,rst,python imap <Esc>[15~ <C-O>:make!^M (when (load "flymake" t)
autocmd FileType tex,mp,rst,python map <Esc>[15~ :make!^M (defun flymake-pyflakes-init ()
autocmd FileType tex,mp,rst,python set autowrite (let* ((temp-file (flymake-init-create-temp-buffer-copy
'flymake-create-temp-inplace))
In emacs In your emacs (binds F5 to pyflakes): (local-file (file-relative-name
temp-file
(defun pyflakes-thisfile () (interactive) (file-name-directory buffer-file-name))))
(compile (format "pyflakes %s" (buffer-file-name))) (list "pyflakes" (list local-file))))
)
(add-to-list 'flymake-allowed-file-name-masks
(define-minor-mode pyflakes-mode '("\\.py\\'" flymake-pyflakes-init)))
"Toggle pyflakes mode.
With no argument, this command toggles the mode. (add-hook 'find-file-hook 'flymake-find-file-hook)
Non-null prefix argument turns on the mode.
Null prefix argument turns off the mode."
;; The initial value.
nil 2.3.2 Debugging workflow
;; The indicator for the mode line.
" Pyflakes" If you do have a non trivial bug, this is when debugging strategies kick in. There is no silver bullet. Yet, strategies
;; The minor mode bindings. help:
'( ([f5] . pyflakes-thisfile) )
) For debugging a given problem, the favorable situation is when the problem is isolated in a
small number of lines of code, outside framework or application code, with short modify-run-
(add-hook 'python-mode-hook (lambda () (pyflakes-mode t))) fail cycles
1. Make it fail reliably. Find a test case that makes the code fail every time.
A type-as-go spell-checker like integration 2. Divide and Conquer. Once you have a failing test case, isolate the failing code.
Which module.
In vim
Which function.
Use the pyflakes.vim plugin:
Which line of code.
1. download the zip file from http://www.vim.org/scripts/script.php?script_id=2441
=> isolate a small reproducible failure: a test case
2. extract the files in ~/.vim/ftplugin/python
3. Change one thing at a time and re-run the failing test case.
3. make sure your vimrc has filetype plugin indent on
4. Use the debugger to understand what is going wrong.
5. Take notes and be patient. It may take a while.
Note: Once you have gone through this process: isolated a tight piece of code reproducing the bug and fix the
bug using this piece of code, add the corresponding code to your test suite.
Alternatively: use the syntastic plugin. This can be configured to use flake8 too and also handles
on-the-fly checking for many other languages. 2.3.3 Using the Python debugger
The python debugger, pdb: http://docs.python.org/library/pdb.html, allows you to inspect your code interactively.
Specifically it allows you to:
View the source code.
Walk up and down the call stack.
Inspect values of variables.
Modify values of variables.
Set breakpoints.
r
print ipdb> quit
Yes, print statements do work as a debugging tool. However to inspect runtime, it is often more efficient In [3]:
to use the debugger.
/home/varoquau/dev/scipy-lecture-notes/advanced/debugging_optimizing/index_error.py in index_error()
3 def index_error():
4 lst = list('foobar') Step-by-step execution
----> 5 print lst[len(lst)]
6
7 if __name__ == '__main__': Situation: You believe a bug exists in a module but are not sure where.
For instance we are trying to debug wiener_filtering.py. Indeed the code runs, but the filtering does not
IndexError: list index out of range work well.
In [2]: %debug Run the script in IPython with the debugger using %run -d wiener_filtering.p :
> /home/varoquau/dev/scipy-lecture-notes/advanced/debugging_optimizing/index_error.py(5)index_error()
4 lst = list('foobar') In [1]: %run -d wiener_filtering.py
----> 5 print lst[len(lst)] *** Blank or comment
6 *** Blank or comment
*** Blank or comment
ipdb> list Breakpoint 1 at /home/varoquau/dev/scipy-lecture-notes/advanced/debugging_optimizing/wiener_f
1 """Small snippet to raise an IndexError.""" NOTE: Enter 'c' at the ipdb> prompt to start your script.
2 > <string>(1)<module>()
3 def index_error():
4 lst = list('foobar') Set a break point at line 34 using b 34:
----> 5 print lst[len(lst)] ipdb> n
6 > /home/varoquau/dev/scipy-lecture-notes/advanced/debugging_optimizing/wiener_filtering.py(4)
7 if __name__ == '__main__': 3
8 index_error() 1---> 4 import numpy as np
9 5 import scipy as sp
Continue execution to next breakpoint with c(ont(inue)): Raising exception on numerical errors
ipdb> c When we run the wiener_filtering.py file, the following warnings are raised:
> /home/varoquau/dev/scipy-lecture-notes/advanced/debugging_optimizing/wiener_filtering.py(34)iterated_wiener()
33 """ In [2]: %run wiener_filtering.py
2--> 34 noisy_img = noisy_img wiener_filtering.py:40: RuntimeWarning: divide by zero encountered in divide
35 denoised_img = local_mean(noisy_img, size=size) noise_level = (1 - noise/l_var )
We can turn these warnings in exception, which enables us to do post-mortem debugging on them, and find
Step into code with n(ext) and s(tep): next jumps to the next statement in the current execution our problem more quickly:
context, while step will go across execution contexts, i.e. enable exploring inside function calls:
In [3]: np.seterr(all='raise')
ipdb> s Out[3]: {'divide': 'print', 'invalid': 'print', 'over': 'print', 'under': 'ignore'}
> /home/varoquau/dev/scipy-lecture-notes/advanced/debugging_optimizing/wiener_filtering.py(35)iterated_wiener()
In [4]: %run wiener_filtering.py
2 34 noisy_img = noisy_img ---------------------------------------------------------------------------
---> 35 denoised_img = local_mean(noisy_img, size=size) FloatingPointError Traceback (most recent call last)
36 l_var = local_var(noisy_img, size=size) /home/esc/anaconda/lib/python2.7/site-packages/IPython/utils/py3compat.pyc in execfile(fname, *wh
176 else:
ipdb> n 177 filename = fname
> /home/varoquau/dev/scipy-lecture-notes/advanced/debugging_optimizing/wiener_filtering.py(36)iterated_wiener()
--> 178 __builtin__.execfile(filename, *where)
35 denoised_img = local_mean(noisy_img, size=size)
---> 36 l_var = local_var(noisy_img, size=size) /home/esc/physique-cuso-python-2013/scipy-lecture-notes/advanced/debugging/wiener_filtering.py in
37 for i in range(3): 55 pl.matshow(noisy_lena[cut], cmap=pl.cm.gray)
56
Step a few lines and explore the local variables: ---> 57 denoised_lena = iterated_wiener(noisy_lena)
58 pl.matshow(denoised_lena[cut], cmap=pl.cm.gray)
ipdb> n
59
> /home/varoquau/dev/scipy-lecture-notes/advanced/debugging_optimizing/wiener_filtering.py(37)iterated_wiener()
36 l_var = local_var(noisy_img, size=size)
/home/esc/physique-cuso-python-2013/scipy-lecture-notes/advanced/debugging/wiener_filtering.py in
---> 37 for i in range(3):
38 res = noisy_img - denoised_img
38 res = noisy_img - denoised_img
39 noise = (res**2).sum()/res.size
ipdb> print l_var
---> 40 noise_level = (1 - noise/l_var )
[[5868 5379 5316 ..., 5071 4799 5149]
41 noise_level[noise_level<0] = 0
[5013 363 437 ..., 346 262 4355]
42 denoised_img += noise_level*res
[5379 410 344 ..., 392 604 3377]
...,
FloatingPointError: divide by zero encountered in divide
[ 435 362 308 ..., 275 198 1632]
[ 548 392 290 ..., 248 263 1653]
[ 466 789 736 ..., 1835 1725 1940]]
ipdb> print l_var.min()
0 Other ways of starting a debugger
Oh dear, nothing but integers, and 0 variation. Here is our bug, we are doing integer arithmetic. Raising an exception as a poor man break point
If you find it tedious to note the line number to set a break point, you can simply raise an exception at the
point that you want to inspect and use IPythons %debug. Note that in this case you cannot step or continue
the execution.
Debugging test failures using nosetests
You can run nosetests --pdb to drop in post-mortem debugging on exceptions, and nosetests
--pdb-failure to inspect test failures using the debugger.
In addition, you can use the IPython interface for the debugger in nose by installing the nose plugin ipdb-
plugin. You can than pass --ipdb and --ipdb-failure options to nosetests.
Calling the debugger explicitly
Insert the following line where you want to drop in the debugger:
import pdb; pdb.set_trace()
Warning: When running nosetests, the output is captured, and thus it seems that the debugger does not
work. Simply run the nosetests with the -s flag.
To debug with gdb the Python script segfault.py, we can run the script in gdb as follows
Graphical debuggers and alternatives
$ gdb python
For stepping through code and inspecting variables, you might find it more convenient to use a graph- ...
ical debugger such as winpdb. (gdb) run segfault.py
Alternatively, pudb is a good semi-graphical debugger with a text user interface in the console. Starting program: /usr/bin/python segfault.py
[Thread debugging using libthread_db enabled]
Also, the pydbgr project is probably worth looking at.
Program received signal SIGSEGV, Segmentation fault.
_strided_byte_copy (dst=0x8537478 "\360\343G", outstrides=4, src=
Debugger commands and interaction 0x86c0690 <Address 0x86c0690 out of bounds>, instrides=32, N=3,
elsize=4)
at numpy/core/src/multiarray/ctors.c:365
l(list) Lists the code at the current position 365 _FAST_MOVE(Int32);
u(p) Walk up the call stack (gdb)
d(own) Walk down the call stack
n(ext) Execute the next line (does not go down in new functions) We get a segfault, and gdb captures it for post-mortem debugging in the C level stack (not the Python call stack).
s(tep) Execute the next statement (goes down in new functions) We can debug the C call stack using gdbs commands:
bt Print the call stack (gdb) up
a Print the local variables #1 0x004af4f5 in _copy_from_same_shape (dest=<value optimized out>,
!command Execute the given Python command (by opposition to pdb commands src=<value optimized out>, myfunc=0x496780 <_strided_byte_copy>,
swap=0)
Warning: Debugger commands are not Python code at numpy/core/src/multiarray/ctors.c:748
You cannot name the variables the way you want. For instance, if in you cannot override the variables in the 748 myfunc(dit->dataptr, dest->strides[maxaxis],
current frame with the same name: use different names than your local variable when typing code in the
debugger. As you can see, right now, we are in the C code of numpy. We would like to know what is the Python code that
triggers this segfault, so we go up the stack until we hit the Python execution loop:
(gdb) up
Getting help when in the debugger #8 0x080ddd23 in call_function (f=
Frame 0x85371ec, for file /home/varoquau/usr/lib/python2.6/site-packages/numpy/core/arrayprint
at ../Python/ceval.c:3750
Type h or help to access the interactive help: 3750 ../Python/ceval.c: No such file or directory.
in ../Python/ceval.c
ipdb> help
(gdb) up
Documented commands (type help <topic>):
#9 PyEval_EvalFrameEx (f=
========================================
Frame 0x85371ec, for file /home/varoquau/usr/lib/python2.6/site-packages/numpy/core/arrayprint
EOF bt cont enable jump pdef r tbreak w
at ../Python/ceval.c:2412
a c continue exit l pdoc restart u whatis
2412 in ../Python/ceval.c
alias cl d h list pinfo return unalias where
(gdb)
args clear debug help n pp run unt
b commands disable ignore next q s until
break condition down j p quit step up Once we are in the Python execution loop, we can use our special Python helper function. For instance we can
find the corresponding Python code:
Miscellaneous help topics: (gdb) pyframe
========================== /home/varoquau/usr/lib/python2.6/site-packages/numpy/core/arrayprint.py (158): _leading_trailing
exec pdb (gdb)
Undocumented commands: This is numpy code, we need to go up until we find code that we have written:
======================
retval rv (gdb) up
...
(gdb) up
2.3.4 Debugging segmentation faults using gdb #34 0x080dc97a in PyEval_EvalFrameEx (f=
Frame 0x82f064c, for file segfault.py, line 11, in print_big_array (small_array=<numpy.ndarray
1630 ../Python/ceval.c: No such file or directory.
If you have a segmentation fault, you cannot debug it with pdb, as it crashes the Python interpreter before it can in ../Python/ceval.c
drop in the debugger. Similarly, if you have a bug in C code embedded in Python, pdb is useless. For this we turn (gdb) pyframe
to the gnu debugger, gdb, available on Linux. segfault.py (12): print_big_array
Before we start with gdb, let us add a few Python-specific tools to it. For this we add a few macros to our
~/.gbdinit. The optimal choice of macro depends on your Python version and your gdb version. I have added The corresponding code is:
a simplified version in gdbinit, but feel free to read DebuggingWithGdb.
def make_big_array(small_array): 3. Optimize the code by profiling simple use-cases to find the bottlenecks and speeding up these bottleneck,
big_array = stride_tricks.as_strided(small_array, finding a better algorithm or implementation. Keep in mind that a trade off should be found between
shape=(2e6, 2e6), strides=(32, 32)) profiling on a realistic example and the simplicity and speed of execution of the code. For efficient work, it
return big_array is best to work with profiling runs lasting around 10s.
def print_big_array(small_array):
big_array = make_big_array(small_array) 2.4.2 Profiling Python code
Thus the segfault happens when printing big_array[-10:]. The reason is simply that big_array has been
allocated with its end outside the program memory. No optimization without measuring!
Note: For a list of Python-specific commands defined in the gdbinit, read the source of this file. Measure: profiling, timing
Youll have surprises: the fastest code is not always what you think
Wrap up exercise
Timeit
The following script is well documented and hopefully legible. It seeks to answer a problem of actual interest
for numerical computing, but it does not work... Can you debug it? In IPython, use timeit (http://docs.python.org/library/timeit.html) to time elementary operations:
Python source code: to_debug.py
In [1]: import numpy as np
In [2]: a = np.arange(1000)
Note: For long running calls, using %time instead of %timeit; it is less precise but faster
Prerequisites
line_profiler
Profiler
Useful when you have a large program to profile, for example the following file:
Chapters contents
# For this example to run, you also need the 'ica.py' file
Optimization workflow (page 197)
Profiling Python code (page 198) import numpy as np
Timeit (page 198) from scipy import linalg
Profiler (page 198)
Line-profiler (page 200) from ica import fastica
Making code go faster (page 200)
Algorithmic optimization (page 200)
def test():
* Example of the SVD (page 200) data = np.random.random((5000, 100))
Writing faster numerical code (page 201)
u, s, v = linalg.svd(data)
Additional Links (page 203) pca = np.dot(u[:, :10].T, data)
results = fastica(pca.T, whiten=False)
if __name__ == '__main__':
2.4.1 Optimization workflow test()
example to unmix multiple signals that have been recorded through multiple sensors. Doing a PCA first and then Line-profiler
an ICA can be useful if you have more sensors than signals. For more information see: the FastICA example from
scikits-learn. The profiler tells us which function takes most of the time, but not where it is called.
For this, we use the line_profiler: in the source file, we decorate a few functions that we want to inspect with
To run it, you also need to download the ica module. In IPython we can time the script: @profile (no need to import it)
In [1]: %run -t demo.py @profile
def test():
IPython CPU timings (estimated): data = np.random.random((5000, 100))
User : 14.3929 s. u, s, v = linalg.svd(data)
System: 0.256016 s. pca = np.dot(u[:, :10], data)
results = fastica(pca.T, whiten=False)
and profile it:
In [2]: %run -p demo.py Then we run the script using the kernprof.py program, with switches -l, --line-by-line and -v,
--view to use the line-by-line profiler and view the results in addition to saving them:
916 function calls in 14.551 CPU seconds $ kernprof.py -l -v demo.py
Ordered by: internal time Wrote profile results to demo.py.lprof
Timer unit: 1e-06 s
ncalls tottime percall cumtime percall filename:lineno (function)
1 14.457 14.457 14.479 14.479 decomp.py:849 (svd) File: demo.py
1 0.054 0.054 0.054 0.054 {method 'random_sample' of 'mtrand.RandomState' objects} Function: test at line 5
1 0.017 0.017 0.021 0.021 function_base.py:645 (asarray_chkfinite) Total time: 14.2793 s
54 0.011 0.000 0.011 0.000 {numpy.core._dotblas.dot}
2 0.005 0.002 0.005 0.002 {method 'any' of 'numpy.ndarray' objects} Line # Hits Time Per Hit % Time Line Contents
6 0.001 0.000 0.001 0.000 ica.py:195 (gprime) =========== ============ ===== ========= ======= ==== ========
6 0.001 0.000 0.001 0.000 ica.py:192 (g) 5 @profile
14 0.001 0.000 0.001 0.000 {numpy.linalg.lapack_lite.dsyevd} 6 def test():
19 0.001 0.000 0.001 0.000 twodim_base.py:204 (diag) 7 1 19015 19015.0 0.1 data = np.random.random((5000, 100))
1 0.001 0.001 0.008 0.008 ica.py:69 (_ica_par) 8 1 14242163 14242163.0 99.7 u, s, v = linalg.svd(data)
1 0.001 0.001 14.551 14.551 {execfile} 9 1 10282 10282.0 0.1 pca = np.dot(u[:10, :], data)
107 0.000 0.000 0.001 0.000 defmatrix.py:239 (__array_finalize__) 10 1 7799 7799.0 0.1 results = fastica(pca.T, whiten=False)
7 0.000 0.000 0.004 0.001 ica.py:58 (_sym_decorrelation)
7 0.000 0.000 0.002 0.000 linalg.py:841 (eigh)
The SVD is taking all the time. We need to optimise this line.
172 0.000 0.000 0.000 0.000 {isinstance}
1 0.000 0.000 14.551 14.551 demo.py:1 (<module>)
29 0.000 0.000 0.000 0.000 numeric.py:180 (asarray)
35 0.000 0.000 0.000 0.000 defmatrix.py:193 (__new__)
2.4.3 Making code go faster
35 0.000 0.000 0.001 0.000 defmatrix.py:43 (asmatrix)
21 0.000 0.000 0.001 0.000 defmatrix.py:287 (__mul__) Once we have identified the bottlenecks, we need to make the corresponding code go faster.
41 0.000 0.000 0.000 0.000 {numpy.core.multiarray.zeros}
28 0.000 0.000 0.000 0.000 {method 'transpose' of 'numpy.ndarray' objects}
1 0.000 0.000 0.008 0.008 ica.py:97 (fastica) Algorithmic optimization
...
The first thing to look for is algorithmic optimization: are there ways to compute less, or better?
Clearly the svd (in decomp.py) is what takes most of our time, a.k.a. the bottleneck. We have to find a way to
For a high-level view of the problem, a good understanding of the maths behind the algorithm helps. However, it
make this step go faster, or to avoid this step (algorithmic optimization). Spending time on the rest of the code is
is not uncommon to find simple changes, like moving computation or memory allocation outside a for loop,
useless.
that bring in big gains.
In [3]: %timeit np.linalg.svd(data) Use broadcasting (page 62) to do operations on arrays as small as possible before combining them.
1 loops, best of 3: 14.5 s per loop In place operations
In [4]: from scipy import linalg In [1]: a = np.zeros(1e7)
In [7]: %timeit np.linalg.svd(data, full_matrices=False) note: we need global a in the timeit so that it work, as it is assigning to a, and thus considers it as a
1 loops, best of 3: 293 ms per loop local variable.
We can then use this insight to optimize the previous code: Be easy on the memory: use views, and not copies
def test(): Copying big arrays is as costly as making simple numerical operations on them:
data = np.random.random((5000, 100)) In [1]: a = np.zeros(1e7)
u, s, v = linalg.svd(data, full_matrices=False)
pca = np.dot(u[:, :10].T, data) In [2]: %timeit a.copy()
results = fastica(pca.T, whiten=False) 10 loops, best of 3: 124 ms per loop
Computational linear algebra This is the reason why Fortran ordering or C ordering may make a big difference on operations:
For certain algorithms, many of the bottlenecks will be linear algebra computations. In this case, using the In [5]: a = np.random.rand(20, 2**18)
right function to solve the right problem is key. For instance, an eigenvalue problem with a symmetric matrix
is easier to solve than with a general matrix. Also, most often, you can avoid inverting a matrix and use a In [6]: b = np.random.rand(20, 2**18)
less costly (and more numerically stable) operation.
In [7]: %timeit np.dot(b, a.T)
Know your computational linear algebra. When in doubt, explore scipy.linalg, and use %timeit to
1 loops, best of 3: 194 ms per loop
try out different alternatives on your data.
In [8]: c = np.ascontiguousarray(a.T)
A complete discussion on advanced use of numpy is found in chapter Advanced Numpy (page 155), or in the Note that copying the data to work around this effect may not be worth it:
article The NumPy array: a structure for efficient numerical computation by van der Walt et al. Here we discuss
In [10]: %timeit c = np.ascontiguousarray(a.T)
only some commonly encountered tricks to make code faster.
10 loops, best of 3: 106 ms per loop
Vectorizing for loops
Using numexpr can be useful to automatically optimize code for such effects.
Find tricks to avoid for loops using numpy arrays. For this, masks and indices arrays can be useful.
Use compiled code
Broadcasting
The last resort, once you are sure that all the high-level optimizations have been explored, is to transfer the Sparse Matrices vs. Sparse Matrix Storage Schemes
hot spots, i.e. the few lines or functions in which most of the time is spent, to compiled code. For compiled
code, the preferred option is to use Cython: it is easy to transform exiting Python code in compiled code, sparse matrix is a matrix, which is almost empty
and with a good use of the numpy support yields efficient code on numpy arrays, for instance by unrolling
storing all the zeros is wasteful -> store only nonzero items
loops.
think compression
Warning: For all the above: profile and time your choices. Dont base your optimization on theoretical
considerations. pros: huge memory savings
cons: depends on actual storage scheme, (*) usually does not hold
Additional Links
Typical Applications
If you need to profile memory usage, you could try the memory_profiler
solution of partial differential equations (PDEs)
If you need to profile down into C extensions, you could try using gperftools from Python with yep.
the finite element method
If you would like to track performace of your code across time, i.e. as you make new commits to your
mechanical engineering, electrotechnics, physics, ...
repository, you could try: vbench
graph theory
If you need some interactive visualization why not try RunSnakeRun
nonzero at (i, j) means that node i is connected to node j
...
2.5 Sparse Matrices in SciPy
Prerequisites
Author: Robert Cimrman
recent versions of
numpy
scipy
2.5. Sparse Matrices in SciPy 203 2.5. Sparse Matrices in SciPy 204
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Common Methods
2.5. Sparse Matrices in SciPy 205 2.5. Sparse Matrices in SciPy 206
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
use: -2: . 6 3 .
rather specialized -3: . . 7 4
---------8
solving PDEs by finite differences
matrix-vector multiplication
with an iterative solver
>>> vec = np.ones((4, ))
>>> vec
Examples array([ 1., 1., 1., 1.])
>>> mtx * vec
create some DIA matrices: array([ 12., 19., 9., 11.])
>>> data = np.array([[1, 2, 3, 4]]).repeat(3, axis=0) >>> mtx.toarray() * vec
>>> data array([[ 1., 0., 11., 0.],
array([[1, 2, 3, 4], [ 5., 2., 0., 12.],
[1, 2, 3, 4], [ 0., 6., 3., 0.],
[1, 2, 3, 4]]) [ 0., 0., 7., 4.]])
>>> offsets = np.array([0, -1, 2])
>>> mtx = sparse.dia_matrix((data, offsets), shape=(4, 4))
>>> mtx List of Lists Format (LIL)
<4x4 sparse matrix of type '<... 'numpy.int64'>'
with 9 stored elements (3 diagonals) in DIAgonal format>
row-based linked list
>>> mtx.todense()
matrix([[1, 0, 3, 0], each row is a Python list (sorted) of column indices of non-zero elements
[1, 2, 0, 4],
[0, 2, 3, 0], rows stored in a NumPy array (dtype=np.object)
[0, 0, 3, 4]])
non-zero values data stored analogously
>>> data = np.arange(12).reshape((3, 4)) + 1 efficient for constructing sparse matrices incrementally
>>> data
array([[ 1, 2, 3, 4], constructor accepts:
[ 5, 6, 7, 8], dense matrix (array)
[ 9, 10, 11, 12]])
>>> mtx = sparse.dia_matrix((data, offsets), shape=(4, 4)) sparse matrix
>>> mtx.data
array([[ 1, 2, 3, 4], shape tuple (create empty matrix)
[ 5, 6, 7, 8], flexible slicing, changing sparsity structure is efficient
[ 9, 10, 11, 12]]...)
>>> mtx.offsets slow arithmetics, slow column slicing due to being row-based
array([ 0, -1, 2], dtype=int32)
use:
>>> print(mtx)
(0, 0) 1 when sparsity pattern is not known apriori or changes
(1, 1) 2
(2, 2) 3 example: reading a sparse matrix from a text file
(3, 3) 4
(1, 0) 5
(2, 1) 6 Examples
(3, 2) 7 create an empty LIL matrix:
(0, 2) 11
(1, 3) 12 >>> mtx = sparse.lil_matrix((4, 5))
>>> mtx.todense()
matrix([[ 1, 0, 11, 0], prepare random data:
[ 5, 2, 0, 12],
[ 0, 6, 3, 0], >>> from numpy.random import rand
[ 0, 0, 7, 4]]) >>> data = np.round(rand(2, 3))
>>> data
explanation with a scheme: array([[ 1., 1., 1.],
[ 1., 0., 1.]])
offset: row
assign the data using fancy indexing:
2: 9
1: --10------ >>> mtx[:2, [1, 2, 3]] = data
0: 1 . 11 . >>> mtx
-1: 5 2 . 12 <4x5 sparse matrix of type '<... 'numpy.float64'>'
with 5 stored elements in LInked List format>
2.5. Sparse Matrices in SciPy 207 2.5. Sparse Matrices in SciPy 208
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
2.5. Sparse Matrices in SciPy 209 2.5. Sparse Matrices in SciPy 210
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
2.5. Sparse Matrices in SciPy 211 2.5. Sparse Matrices in SciPy 212
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
create using (data, indices, indptr) tuple: create using (data, ij) tuple:
>>> data = np.array([1, 2, 3, 4, 5, 6]) >>> row = np.array([0, 0, 1, 2, 2, 2])
>>> indices = np.array([0, 2, 2, 0, 1, 2]) >>> col = np.array([0, 2, 2, 0, 1, 2])
>>> indptr = np.array([0, 2, 3, 6]) >>> data = np.array([1, 2, 3, 4, 5, 6])
>>> mtx = sparse.csr_matrix((data, indices, indptr), shape=(3, 3)) >>> mtx = sparse.csc_matrix((data, (row, col)), shape=(3, 3))
>>> mtx.todense() >>> mtx
matrix([[1, 0, 2], <3x3 sparse matrix of type '<... 'numpy.int64'>'
[0, 0, 3], with 6 stored elements in Compressed Sparse Column format>
[4, 5, 6]]) >>> mtx.todense()
matrix([[1, 0, 2],
[0, 0, 3],
Compressed Sparse Column Format (CSC) [4, 5, 6]]...)
>>> mtx.data
array([1, 4, 5, 2, 3, 6]...)
column oriented >>> mtx.indices
three NumPy arrays: indices, indptr, data array([0, 2, 2, 0, 1, 2], dtype=int32)
>>> mtx.indptr
* indices is array of row indices array([0, 2, 3, 6], dtype=int32)
* data is array of corresponding nonzero values create using (data, indices, indptr) tuple:
* indptr points to column starts in indices and data >>> data = np.array([1, 4, 5, 2, 3, 6])
>>> indices = np.array([0, 2, 2, 0, 1, 2])
* length is n_col + 1, last item = number of values = length of both indices and data
>>> indptr = np.array([0, 2, 3, 6])
* nonzero values of the i-th column are data[indptr[i]:indptr[i+1]] with row >>> mtx = sparse.csc_matrix((data, indices, indptr), shape=(3, 3))
indices indices[indptr[i]:indptr[i+1]] >>> mtx.todense()
matrix([[1, 0, 2],
* item (i, j) can be accessed as data[indptr[j]+k], where k is position of i in [0, 0, 3],
indices[indptr[j]:indptr[j+1]] [4, 5, 6]])
subclass of _cs_matrix (common CSR/CSC functionality)
* subclass of _data_matrix (sparse matrix classes with data attribute) Block Compressed Row Format (BSR)
fast matrix vector products and other arithmetics (sparsetools)
basically a CSR with dense sub-matrices of fixed shape instead of scalar items
constructor accepts:
block size (R, C) must evenly divide the shape of the matrix (M, N)
dense matrix (array)
three NumPy arrays: indices, indptr, data
sparse matrix
shape tuple (create empty matrix) * indices is array of column indices for each block
(data, ij) tuple * data is array of corresponding nonzero values of shape (nnz, R, C)
2.5. Sparse Matrices in SciPy 213 2.5. Sparse Matrices in SciPy 214
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
create empty BSR matrix with (3, 2) block size: [[3, 3],
[3, 3]],
>>> mtx = sparse.bsr_matrix((3, 4), blocksize=(3, 2), dtype=np.int8)
>>> mtx
[[4, 4],
<3x4 sparse matrix of type '<... 'numpy.int8'>'
[4, 4]],
with 0 stored elements (blocksize = 3x2) in Block Sparse Row format>
>>> mtx.todense()
[[5, 5],
matrix([[0, 0, 0, 0],
[5, 5]],
[0, 0, 0, 0],
[0, 0, 0, 0]], dtype=int8)
[[6, 6],
[6, 6]]])
a bug?
create using (data, ij) tuple with (1, 1) block size (like CSR...):
Summary
>>> row = np.array([0, 0, 1, 2, 2, 2])
>>> col = np.array([0, 2, 2, 0, 1, 2])
>>> data = np.array([1, 2, 3, 4, 5, 6]) Table 2.1: Summary of storage schemes.
>>> mtx = sparse.bsr_matrix((data, (row, col)), shape=(3, 3))
>>> mtx for- matrix * get fancy set fancy solvers note
<3x3 sparse matrix of type '<... 'numpy.int64'>' mat vector item get item set
with 6 stored elements (blocksize = 1x1) in Block Sparse Row format> DIA sparsetools . . . . itera- has data array, specialized
>>> mtx.todense() tive
matrix([[1, 0, 2], LIL via CSR yes yes yes yes itera- arithmetics via CSR,
[0, 0, 3], tive incremental construction
[4, 5, 6]]...)
DOK python yes one axis yes yes itera- O(1) item access, incremental
>>> mtx.data
array([[[1]],
only tive construction
COO sparsetools . . . . itera- has data array, facilitates fast
[[2]], tive conversion
CSR sparsetools yes yes slow . any has data array, fast row-wise ops
[[3]], CSC sparsetools yes yes slow . any has data array, fast column-wise
ops
[[4]], BSR sparsetools . . . . special- has data array, specialized
ized
[[5]],
[[6]]]...)
>>> mtx.indices
2.5.3 Linear System Solvers
array([0, 2, 2, 0, 1, 2], dtype=int32)
sparse matrix/eigenvalue problem solvers live in scipy.sparse.linalg
2.5. Sparse Matrices in SciPy 215 2.5. Sparse Matrices in SciPy 216
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
2.5. Sparse Matrices in SciPy 217 2.5. Sparse Matrices in SciPy 218
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
mandatory: arpack * a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems
A [{sparse matrix, dense matrix, LinearOperator}] The N-by-N matrix of the linear system. lobpcg (Locally Optimal Block Preconditioned Conjugate Gradient Method) * works very well in com-
bination with PyAMG * example by Nathan Bell:
b [{array, matrix}] Right hand side of the linear system. Has shape (N,) or (N,1).
"""
optional: Compute eigenvectors and eigenvalues using a preconditioned eigensolver
========================================================================
x0 [{array, matrix}] Starting guess for the solution.
tol [float] Relative tolerance to achieve before terminating. In this example Smoothed Aggregation (SA) is used to precondition
the LOBPCG eigensolver on a two-dimensional Poisson problem with
maxiter [integer] Maximum number of iterations. Iteration will stop after maxiter steps even if the specified Dirichlet boundary conditions.
tolerance has not been achieved. """
M [{sparse matrix, dense matrix, LinearOperator}] Preconditioner for A. The preconditioner should ap-
import scipy
proximate the inverse of A. Effective preconditioning dramatically improves the rate of convergence, from scipy.sparse.linalg import lobpcg
which implies that fewer iterations are needed to reach a given error tolerance.
callback [function] User-supplied function to call after each iteration. It is called as callback(xk), where from pyamg import smoothed_aggregation_solver
xk is the current solution vector. from pyamg.gallery import poisson
N = 100
LinearOperator Class K = 9
A = poisson((N,N), format='csr')
2.5. Sparse Matrices in SciPy 219 2.5. Sparse Matrices in SciPy 220
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
examples/pyamg_with_lobpcg.py
example by Nils Wagner: 2.6 Image manipulation and processing using Numpy and Scipy
examples/lobpcg_sakurai.py
Authors: Emmanuelle Gouillart, Gal Varoquaux
output:
This section addresses basic image manipulation and processing using the core scientific modules NumPy and
$ python examples/lobpcg_sakurai.py
SciPy. Some of the operations covered by this tutorial may be useful for other kinds of multidimensional array
Results by LOBPCG for n=2500
processing than image processing. In particular, the submodule scipy.ndimage provides functions operating
[ 0.06250083 0.06250028 0.06250007] on n-dimensional NumPy arrays.
See also:
Exact eigenvalues
For more advanced image processing and image-specific routines, see the tutorial Scikit-image: image processing
[ 0.06250005 0.0625002 0.06250044] (page 324), dedicated to the skimage module.
PyAMG
algebraic multigrid solvers
2.5. Sparse Matrices in SciPy 221 2.6. Image manipulation and processing using Numpy and Scipy 222
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Chapters contents >>> misc.imsave('lena.png', lena) # First we need to create the PNG file
Opening and writing to image files (page 223) >>> lena = misc.imread('lena.png')
Displaying images (page 224) >>> type(lena)
Basic manipulations (page 225) <... 'numpy.ndarray'>
Statistical information (page 226) >>> lena.shape, lena.dtype
Geometrical transformations (page 227) ((512, 512), dtype('uint8'))
Image filtering (page 227)
Blurring/smoothing (page 227) dtype is uint8 for 8-bit images (0-255)
Sharpening (page 228)
Opening raw files (camera, 3-D images)
Denoising (page 228)
Mathematical morphology (page 229) >>> lena.tofile('lena.raw') # Create raw file
Feature extraction (page 232) >>> lena_from_raw = np.fromfile('lena.raw', dtype=np.uint8)
Edge detection (page 232) >>> lena_from_raw.shape
Segmentation (page 232) (262144,)
Measuring objects properties: ndimage.measurements (page 234) >>> lena_from_raw.shape = (512, 512)
Need to know the shape and dtype of the image (how to separate data bytes).
For large data, use np.memmap for memory mapping:
2.6.1 Opening and writing to image files
>>> lena_memmap = np.memmap('lena.raw', dtype=np.uint8, shape=(512, 512))
Writing an array to a file:
(data are read from the file, and not loaded into memory)
Displaying Lena
================ Working on a list of image files
>>> for i in range(10):
Small example to plot lena. ... im = np.random.random_integers(0, 255, 10000).reshape((100, 100))
""" ... misc.imsave('random_%02d.png' % i, im)
>>> from glob import glob
from scipy import misc >>> filelist = glob('random*.png')
l = misc.lena() >>> filelist.sort()
misc.imsave('lena.png', l) # uses the Image module (PIL)
2.6. Image manipulation and processing using Numpy and Scipy 223 2.6. Image manipulation and processing using Numpy and Scipy 224
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
>>> # Slicing
>>> lena[10:13, 20:23]
array([[158, 156, 157],
[157, 155, 155],
[157, 157, 158]])
>>> lena[100:120] = 255
>>>
>>> lx, ly = lena.shape
>>> X, Y = np.ogrid[0:lx, 0:ly]
>>> mask = (X - lx / 2) ** 2 + (Y - ly / 2) ** 2 > lx * ly / 4
>>> # Masks
>>> lena[mask] = 0
>>> # Fancy indexing
>>> lena[range(400), range(400)] = 255
np.histogram
2.6. Image manipulation and processing using Numpy and Scipy 225 2.6. Image manipulation and processing using Numpy and Scipy 226
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Sharpening
Geometrical transformations
Sharpen a blurred image:
>>> lena = misc.lena()
>>> lx, ly = lena.shape >>> from scipy import misc
>>> # Cropping >>> lena = misc.lena()
>>> crop_lena = lena[lx / 4: - lx / 4, ly / 4: - ly / 4] >>> blurred_l = ndimage.gaussian_filter(lena, 3)
>>> # up <-> down flip
>>> flip_ud_lena = np.flipud(lena) increase the weight of edges by adding an approximation of the Laplacian:
>>> # rotation
>>> rotate_lena = ndimage.rotate(lena, 45) >>> filter_blurred_l = ndimage.gaussian_filter(blurred_l, 1)
>>> rotate_lena_noreshape = ndimage.rotate(lena, 45, reshape=False) >>> alpha = 30
>>> sharpened = blurred_l + alpha * (blurred_l - filter_blurred_l)
Local filters: replace the value of pixels by a function of the values of neighboring pixels.
Neighbourhood: square (choose size), disk, or more complicated structuring element. Denoising
Noisy lena:
>>> from scipy import misc
>>> l = misc.lena()
>>> l = l[230:310, 210:350]
>>> noisy = l + 0.4 * l.std() * np.random.random(l.shape)
A Gaussian filter smoothes the noise out... and the edges as well:
Blurring/smoothing >>> gauss_denoised = ndimage.gaussian_filter(noisy, 2)
2.6. Image manipulation and processing using Numpy and Scipy 227 2.6. Image manipulation and processing using Numpy and Scipy 228
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Most local linear isotropic filters blur the image (ndimage.uniform_filter) array([[0, 1, 0],
A median filter preserves better the edges: [1, 1, 1],
[0, 1, 0]])
>>> med_denoised = ndimage.median_filter(noisy, 3)
Mathematical morphology
See http://en.wikipedia.org/wiki/Mathematical_morphology
Probe an image with a simple shape (a structuring element), and modify this image according to how the shape
locally fits or misses the image.
Structuring element:
>>> el = ndimage.generate_binary_structure(2, 1)
>>> el
array([[False, True, False],
[ True, True, True],
[False, True, False]], dtype=bool)
>>> el.astype(np.int) Dilation: maximum filter:
2.6. Image manipulation and processing using Numpy and Scipy 229 2.6. Image manipulation and processing using Numpy and Scipy 230
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Opening: erosion + dilation: Use a gradient operator (Sobel) to find high intensity variations:
2.6. Image manipulation and processing using Numpy and Scipy 231 2.6. Image manipulation and processing using Numpy and Scipy 232
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
>>> # 4 circles
Use mathematical morphology to clean up the result: >>> img = circle1 + circle2 + circle3 + circle4
>>> mask = img.astype(bool)
>>> # Remove small white regions >>> img = img.astype(float)
>>> open_img = ndimage.binary_opening(binary_img)
>>> # Remove small black hole >>> img += 1 + 0.2*np.random.randn(*img.shape)
>>> close_img = ndimage.binary_closing(open_img) >>> # Convert the image into a graph with the value of the gradient on
>>> # the edges.
>>> graph = image.img_to_graph(img, mask=mask)
Exercise
Check how a first denoising step (e.g. with a median filter) modifies the histogram, and check that the
resulting histogram-based segmentation is more accurate.
2.6.6 Measuring objects properties: ndimage.measurements
See also:
Synthetic data:
More advanced segmentation algorithms are found in the scikit-image: see Scikit-image: image processing
(page 324). >>> n = 10
>>> l = 256
See also: >>> im = np.zeros((l, l))
>>> points = l*np.random.random((2, n**2))
Other Scientific Packages provide algorithms that can be useful for image processing. In this example, we use the
>>> im[(points[0]).astype(np.int), (points[1]).astype(np.int)] = 1
spectral clustering function of the scikit-learn in order to segment glued objects.
2.6. Image manipulation and processing using Numpy and Scipy 233 2.6. Image manipulation and processing using Numpy and Scipy 234
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
2.6. Image manipulation and processing using Numpy and Scipy 235 2.6. Image manipulation and processing using Numpy and Scipy 236
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
See also:
More on image-processing:
The chapter on Scikit-image (page 324)
Other, more powerful and complete modules: OpenCV (Python bindings), CellProfiler, ITK with Python
bindings
Other measures
2.6. Image manipulation and processing using Numpy and Scipy 237 2.6. Image manipulation and processing using Numpy and Scipy 238
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Prerequisites
Numpy, Scipy
IPython
matplotlib
References
Mathematical optimization is very ... mathematical. If you want performance, it really pays to read the
books:
Convex Optimization by Boyd and Vandenberghe (pdf available free online).
Numerical Optimization, by Nocedal and Wright. Detailed reference on gradient descent methods.
Practical Methods of Optimization by Fletcher: good at hand-waving explainations.
Not all optimization problems are equal. Knowing your problem enables you to choose the right tool. A smooth function: A non-smooth function
The gradient is defined everywhere, and is a continuous function
2.7. Mathematical optimization: finding minima of functions 239 2.7. Mathematical optimization: finding minima of functions 240
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Optimizing smooth functions is easier (true in the context of black-box optimization, otherwise Linear Program-
ming is an example of methods which deal very efficiently with piece-wise linear functions).
2.7. Mathematical optimization: finding minima of functions 241 2.7. Mathematical optimization: finding minima of functions 242
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
The conjugate gradient solves this problem by adding a friction term: each step depends on the two last values of
Take home message: conditioning number and preconditioning the gradient and sharp turns are reduced.
If you know natural scaling for your variables, prescale them so that they behave similarly. This is related to
preconditioning. Table 2.4: Conjugate gradient descent
Also, it clearly can be advantageous to take bigger steps. This is done in gradient descent code using a line search.
An ill-conditionned
non-quadratic function.
A well-conditionned quadratic
function.
An ill-conditionned very
non-quadratic function.
Methods based on conjugate gradient are named with cg in scipy. The simple conjugate gradient method to
minimize a function is scipy.optimize.fmin_cg():
An ill-conditionned quadratic >>> def f(x): # The rosenbrock function
function. ... return .5*(1 - x[0])**2 + (x[1] - x[0]**2)**2
>>> optimize.fmin_cg(f, [2, 2])
Optimization terminated successfully.
Current function value: 0.000000
Iterations: 13
Function evaluations: 120
Gradient evaluations: 30
array([ 0.99998968, 0.99997855])
These methods need the gradient of the function. They can compute it, but will perform better if you can pass
An ill-conditionned
them the gradient:
non-quadratic function.
>>> def fprime(x):
... return np.array((-2*.5*(1 - x[0]) - 4*x[0]*(x[1] - x[0]**2), 2*(x[1] - x[0]**2)))
>>> optimize.fmin_cg(f, [2, 2], fprime=fprime)
Optimization terminated successfully.
Current function value: 0.000000
Iterations: 13
Function evaluations: 30
Gradient evaluations: 30
An ill-conditionned very array([ 0.99999199, 0.99998336])
non-quadratic function.
Note that the function has only been evaluated 30 times, compared to 120 without the gradient.
The more a function looks like a quadratic function (elliptic iso-curves), the easier it is to optimize.
2.7. Mathematical optimization: finding minima of functions 243 2.7. Mathematical optimization: finding minima of functions 244
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
BFGS: BFGS (Broyden-Fletcher-Goldfarb-Shanno algorithm) refines at each step an approximation of the Hes-
sian.
An ill-conditionned quadratic function:
Note that, as the quadratic approximation is exact, the Newton
method is blazing fast
2.7. Mathematical optimization: finding minima of functions 245 2.7. Mathematical optimization: finding minima of functions 246
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Global optimizers
If your problem does not admit a unique local minimum (which can be hard to test unless the function is convex),
and you do not have prior information to initialize the optimization close to the solution, you may need a global
optimizer.
An ill-conditionned quadratic function:
Powells method isnt too sensitive to local
ill-conditionning in low dimensions Brute force: a grid search
scipy.optimize.brute() evaluates the function on a given grid of parameters and returns the parameters
corresponding to the minimum value. The parameters are specified with ranges given to numpy.mgrid. By
default, 20 steps are taken in each direction:
An ill-conditionned very non-quadratic function: >>> def f(x): # The rosenbrock function
... return .5*(1 - x[0])**2 + (x[1] - x[0]**2)**2
>>> optimize.brute(f, ((-1, 2), (-1, 2)))
Simplex method: the Nelder-Mead array([ 1.00001462, 1.00001547])
The Nelder-Mead algorithms is a generalization of dichotomy approaches to high-dimensional spaces. The al-
gorithm works by refining a simplex, the generalization of intervals and triangles to high-dimensional spaces, to 2.7.3 Practical guide to optimization with scipy
bracket the minimum.
Choosing a method
Strong points: it is robust to noise, as it does not rely on computing gradients. Thus it can work on functions that
are not locally smooth such as experimental data points, as long as they display a large-scale bell-shape behavior.
However it is slower than gradient-based methods on smooth, non-noisy functions.
An ill-conditionned
non-quadratic function:
2.7. Mathematical optimization: finding minima of functions 247 2.7. Mathematical optimization: finding minima of functions 248
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Choose the right method (see above), do compute analytically the gradient and Hessian, if you can.
Use preconditionning when possible.
Choose your initialization points wisely. For instance, if you are running many similar optimizations, warm-
restart one with the results of another.
Relax the tolerance if you dont need precision
Computing gradients
Computing gradients, and even more Hessians, is very tedious but worth the effort. Symbolic computation with
Sympy (page 318) may come in handy.
Warning: A very common source of optimization not converging well is human error in the computation of 2.7.4 Special case: non-linear least-squares
the gradient. You can use scipy.optimize.check_grad() to check that your gradient is correct. It
returns the norm of the different between the gradient given, and a gradient computed numerically: Minimizing the norm of a vector function
>>> optimize.check_grad(f, fprime, [2, 2])
Least square problems, minimizing the norm of a vector function, have a specific structure that can be used in the
2.384185791015625e-07
LevenbergMarquardt algorithm implemented in scipy.optimize.leastsq().
See also scipy.optimize.approx_fprime() to find your errors.
Lets try to minimize the norm of the following vectorial function:
>>> def f(x):
... return np.arctan(x) - np.arctan(np.linspace(0, 1, len(x)))
Synthetic exercices
>>> x0 = np.zeros(10)
>>> optimize.leastsq(f, x0)
(array([ 0. , 0.11111111, 0.22222222, 0.33333333, 0.44444444,
0.55555556, 0.66666667, 0.77777778, 0.88888889, 1. ]), 2)
This took 67 function evaluations (check it with full_output=1). What if we compute the norm ourselves and use
a good generic optimizer (BFGS):
>>> def g(x):
... return np.sum(f(x)**2)
>>> optimize.fmin_bfgs(g, x0)
Optimization terminated successfully.
Current function value: 0.000000
Iterations: 11
Exercice: A simple (?) quadratic function Function evaluations: 144
Gradient evaluations: 12
Optimize the following function, using K[0] as a starting point: array([ -7.4...-09, 1.1...e-01, 2.2...e-01,
3.3...e-01, 4.4...e-01, 5.5...e-01,
np.random.seed(0)
6.6...e-01, 7.7...e-01, 8.8...e-01,
K = np.random.normal(size=(100, 100))
1.0...e+00])
def f(x):
return np.sum((np.dot(K, x - 1))**2) + np.sum(x**2)**2
BFGS needs more function calls, and gives a less precise result.
Time your approach. Find the fastest approach. Why is BFGS not working well? Note: leastsq is interesting compared to BFGS only if the dimensionality of the output vector is large, and
larger than the number of parameters to optimize.
Warning: If the function is linear, this is a linear-algebra problem, and should be solved with
scipy.linalg.lstsq().
2.7. Mathematical optimization: finding minima of functions 249 2.7. Mathematical optimization: finding minima of functions 250
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Curve fitting scipy.optimize.fmin_l_bfgs_b() a quasi-Newton (page 246) method with bound constraints:
>>> def f(x):
... return np.sqrt((x[0] - 3)**2 + (x[1] - 2)**2)
>>> optimize.fmin_l_bfgs_b(f, np.array([0, 0]), approx_grad=1, bounds=((-1.5, 1.5), (-1.5, 1.
(array([ 1.5, 1.5]), 1.5811388300841898, {...})
General constraints
>>> np.random.seed(0)
Box bounds correspond to limiting each of the individual parameters of the optimization. Note that some Warning: The above problem is known as the Lasso problem in statistics, and there exists very efficient
problems that are not originally written as box bounds can be rewritten as such via change of variables. solvers for it (for instance in scikit-learn). In general do not use generic solvers when specific ones exist.
Lagrange multipliers
If you are ready to do a bit of math, many constrained optimization problems can be converted to non-
constrained optimization problems using a mathematical trick known as Lagrange multipliers.
2.7. Mathematical optimization: finding minima of functions 251 2.8. Interfacing with C 252
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
This chapter contains an introduction to the many different routes for making your native code (primarily C/C++) You will need a C compiler for most of the examples.
available from Python, a process commonly referred to wrapping. The goal of this chapter is to give you a
flavour of what technologies exist and what their respective merits and shortcomings are, so that you can select
the appropriate one for your specific needs. In any case, once you do start wrapping, you almost certainly will 2.8.2 Python-C-Api
want to consult the respective documentation for your selected technique.
The Python-C-API is the backbone of the standard Python interpreter (a.k.a CPython). Using this API it is possible
to write Python extension module in C and C++. Obviously, these extension modules can, by virtue of language
Chapters contents compatibility, call any function written in C or C++.
Introduction (page 253) When using the Python-C-API, one usually writes much boilerplate code, first to parse the arguments that were
Python-C-Api (page 254) given to a function, and later to construct the return type.
Ctypes (page 258)
SWIG (page 261) Advantages
Cython (page 265) Requires no additional libraries
Summary (page 269)
Further Reading and References (page 269) Lots of low-level control
Exercises (page 269) Entirely usable from C++
Disadvantages
May require a substantial amount of effort
2.8.1 Introduction
Much overhead in the code
This chapter covers the following techniques:
Must be compiled
Python-C-Api
High maintenance cost
Ctypes
No forward compatibility across Python versions as C-API changes
SWIG (Simplified Wrapper and Interface Generator)
Reference count bugs are easy to create and very hard to track down.
Cython
Note: The Python-C-Api example here serves mainly for didactic reasons. Many of the other techniques actually
These four techniques are perhaps the most well known ones, of which Cython is probably the most advanced one depend on this, so it is good to have a high-level understanding of how it works. In 99% of the use-cases you will
and the one you should consider using first. The others are also important, if you want to understand the wrapping be better off, using an alternative technique.
problem from different angles. Having said that, there are other alternatives out there, but having understood the
basics of the ones above, you will be in a position to evaluate the technique of your choice to see if it fits your
needs. Note: Since refernce counting bugs are easy to create and hard to track down, anyone really needing to use
the Python C-API should read the section about objects, types and reference counts from the official python
The following criteria may be useful when evaluating a technology: documentation. Additionally, there is a tool by the name of cpychecker which can help discover common errors
Are additional libraries required? with reference counting.
Is the code autogenerated?
Does it need to be compiled? Example
Is there good support for interacting with Numpy arrays?
The following C-extension module, make the cos function from the standard math library available to Python:
Does it support C++?
/* Example of wrapping cos function from math.h with the Python-C-API. */
Before you set out, you should consider your use case. When interfacing with native code, there are usually two
use-cases that come up: #include <Python.h>
Existing code in C/C++ that needs to be leveraged, either because it already exists, or because it is faster. #include <math.h>
Python code too slow, push inner loops to native code /* wrapped cosine function */
static PyObject* cos_func(PyObject* self, PyObject* args)
Each technology is demonstrated by wrapping the cos function from math.h. While this is a mostly a trivial {
example, it should serve us well to demonstrate the basics of the wrapping solution. Since each technique also double value;
includes some form of Numpy support, this is also demonstrated using an example where the cosine is computed double answer;
on some kind of array.
/* parse the input, from python float to c double */
Last but not least, two small warnings: if (!PyArg_ParseTuple(args, "d", &value))
All of these techniques may crash (segmentation fault) the Python interpreter, which is (usually) due to bugs return NULL;
in the C code. /* if the above function returns -1, an appropriate Python exception will
* have been set, and the function simply returns NULL
All the examples have been done on Linux, they should be possible on other operating systems. */
Type: module
/* call cos from libm */
String Form:<module 'cos_module' from 'cos_module.so'>
answer = cos(value);
File: /home/esc/git-working/scipy-lecture-notes/advanced/interfacing_with_c/python_c_api/cos
Docstring: <no docstring>
/* construct the output from cos, from c double to python float */
return Py_BuildValue("f", answer);
In [3]: dir(cos_module)
}
Out[3]: ['__doc__', '__file__', '__name__', '__package__', 'cos_func']
/* define functions in module */
In [4]: cos_module.cos_func(1.0)
static PyMethodDef CosMethods[] =
Out[4]: 0.5403023058681398
{
{"cos_func", cos_func, METH_VARARGS, "evaluate the cosine"},
In [5]: cos_module.cos_func(0.0)
{NULL, NULL, 0, NULL}
Out[5]: 1.0
};
In [6]: cos_module.cos_func(3.14159265359)
/* module initialization */
Out[7]: -1.0
PyMODINIT_FUNC
initcos_module(void)
Now lets see how robust this is:
{ In [10]: cos_module.cos_func('foo')
(void) Py_InitModule("cos_module", CosMethods); ---------------------------------------------------------------------------
} TypeError Traceback (most recent call last)
<ipython-input-10-11bee483665d> in <module>()
As you can see, there is much boilerplate, both to massage the arguments and return types into place and for ----> 1 cos_module.cos_func('foo')
the module initialisation. Although some of this is amortised, as the extension grows, the boilerplate required for
each function(s) remains. TypeError: a float is required
The standard python build system distutils supports compiling C-extensions from a setup.py, which is
rather convenient:
Numpy Support
from distutils.core import setup, Extension
Analog to the Python-C-API, Numpy, which is itself implemented as a C-extension, comes with the Numpy-C-
# define the extension module API. This API can be used to create and manipulate Numpy arrays from C, when writing a custom C-extension.
cos_module = Extension('cos_module', sources=['cos_module.c']) See also: :ref:advanced_numpy_.
# run the setup
Note: If you do ever need to use the Numpy C-API refer to the documentation about Arrays and Iterators.
setup(ext_modules=[cos_module])
This can be compiled: The following example shows how to pass Numpy arrays as arguments to functions and how to iterate over Numpy
arrays using the (old) Numpy-C-API. It simply takes an array as argument applies the cosine function from the
$ cd advanced/interfacing_with_c/python_c_api math.h and returns a resulting new array.
$ ls /* Example of wrapping the cos function from math.h using the Numpy-C-API. */
cos_module.c setup.py
#include <Python.h>
$ python setup.py build_ext --inplace #include <numpy/arrayobject.h>
running build_ext #include <math.h>
building 'cos_module' extension
creating build /* wrapped cosine function */
creating build/temp.linux-x86_64-2.7 static PyObject* cos_func_np(PyObject* self, PyObject* args)
{
gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -I/home/esc/anaconda/include/python2.7 -c cos_module.c -o build/temp.linux-x86_64-2.7/cos_module.o
gcc -pthread -shared build/temp.linux-x86_64-2.7/cos_module.o -L/home/esc/anaconda/lib -lpython2.7 -o /home/esc/git-working/scipy-lecture-notes/advanced/interfacing_with_c/python_c_api/cos_module.so
PyArrayObject *in_array;
$ ls PyObject *out_array;
build/ cos_module.c cos_module.so setup.py NpyIter *in_iter;
NpyIter *out_iter;
build_ext is to build extension modules NpyIter_IterNextFunc *in_iternext;
NpyIter_IterNextFunc *out_iternext;
--inplace will output the compiled extension module into the current directory
The file cos_module.so contains the compiled extension, which we can now load in the IPython interpreter: /* parse single numpy array argument */
if (!PyArg_ParseTuple(args, "O!", &PyArray_Type, &in_array))
In [1]: import cos_module return NULL;
In [2]: cos_module? /* construct the output array, like the input array */
out_array = PyArray_NewLikeArray(in_array, NPY_ANYORDER, NULL, 0); from distutils.core import setup, Extension
if (out_array == NULL) import numpy
return NULL;
# define the extension module
/* create the iterators */ cos_module_np = Extension('cos_module_np', sources=['cos_module_np.c'],
in_iter = NpyIter_New(in_array, NPY_ITER_READONLY, NPY_KEEPORDER, include_dirs=[numpy.get_include()])
NPY_NO_CASTING, NULL);
if (in_iter == NULL) # run the setup
goto fail; setup(ext_modules=[cos_module_np])
out_iter = NpyIter_New((PyArrayObject *)out_array, NPY_ITER_READWRITE, To convince ourselves if this does actually works, we run the following test script:
NPY_KEEPORDER, NPY_NO_CASTING, NULL);
if (out_iter == NULL) { import cos_module_np
NpyIter_Deallocate(in_iter); import numpy as np
goto fail; import pylab
}
x = np.arange(0, 2 * np.pi, 0.1)
in_iternext = NpyIter_GetIterNext(in_iter, NULL); y = cos_module_np.cos_func_np(x)
out_iternext = NpyIter_GetIterNext(out_iter, NULL); pylab.plot(x, y)
if (in_iternext == NULL || out_iternext == NULL) { pylab.show()
NpyIter_Deallocate(in_iter);
NpyIter_Deallocate(out_iter); And this should result in the following figure:
goto fail;
}
double ** in_dataptr = (double **) NpyIter_GetDataPtrArray(in_iter);
double ** out_dataptr = (double **) NpyIter_GetDataPtrArray(out_iter);
In [6]: cos_module.cos_func(3.14159265359) We can then compile this (on Linux) into the shared library libcos_doubles.so:
Out[6]: -1.0
$ ls
As with the previous example, this code is somewhat robust, although the error message is not quite as helpful, cos_doubles.c cos_doubles.h cos_doubles.py makefile test_cos_doubles.py
since it does not tell us what the type should be. $ make
gcc -c -fPIC cos_doubles.c -o cos_doubles.o
In [7]: cos_module.cos_func('foo') gcc -shared -Wl,-soname,libcos_doubles.so -o libcos_doubles.so cos_doubles.o
--------------------------------------------------------------------------- $ ls
ArgumentError Traceback (most recent call last) cos_doubles.c cos_doubles.o libcos_doubles.so* test_cos_doubles.py
<ipython-input-7-11bee483665d> in <module>() cos_doubles.h cos_doubles.py makefile
----> 1 cos_module.cos_func('foo')
Now we can proceed to wrap this library via ctypes with direct support for (certain kinds of) Numpy arrays:
/home/esc/git-working/scipy-lecture-notes/advanced/interfacing_with_c/ctypes/cos_module.py in cos_func(arg)
12 def cos_func(arg): """ Example of wrapping a C library function that accepts a C double array as
13 ''' Wrapper for cos from math.h ''' input using the numpy.ctypeslib. """
---> 14 return libm.cos(arg)
import numpy as np
ArgumentError: argument 1: <type 'exceptions.TypeError'>: wrong type import numpy.ctypeslib as npct
from ctypes import c_int
# must be a double array, with single dimension that is contiguous Steep learning curve
array_1d_double = npct.ndpointer(dtype=np.double, ndim=1, flags='CONTIGUOUS')
In [7]: cos_module.cos_func('foo') To use the Numpy typemaps, we need include the numpy.i file.
---------------------------------------------------------------------------
TypeError Traceback (most recent call last) Observe the call to import_array() which we encountered already in the Numpy-C-API example.
<ipython-input-7-11bee483665d> in <module>()
Since the type maps only support the signature ARRAY, SIZE we need to wrap the cos_doubles as
----> 1 cos_module.cos_func('foo')
cos_doubles_func which takes two arrays including sizes as input.
TypeError: in method 'cos_func', argument 1 of type 'double' As opposed to the simple SWIG example, we dont include the cos_doubles.h header, There is nothing
there that we wish to expose to Python since we expose the functionality through cos_doubles_func.
$ ls Advantages
cos_doubles.c cos_doubles.h cos_doubles.i numpy.i setup.py test_cos_doubles.py Python like language for writing C-extensions
$ python setup.py build_ext -i
running build_ext Autogenerated code
building '_cos_doubles' extension
swigging cos_doubles.i to cos_doubles_wrap.c Supports incremental optimization
swig -python -o cos_doubles_wrap.c cos_doubles.i Includes a GNU debugger extension
cos_doubles.i:24: Warning(490): Fragment 'NumPy_Backward_Compatibility' not found.
cos_doubles.i:24: Warning(490): Fragment 'NumPy_Backward_Compatibility' not found. Support for C++ (Since version 0.13)
cos_doubles.i:24: Warning(490): Fragment 'NumPy_Backward_Compatibility' not found.
Disadvantages
creating build
creating build/temp.linux-x86_64-2.7 Must be compiled
gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -I/home/esc/anaconda/lib/python2.7/site-packages/numpy/core/include -I/home/esc/anaconda/include/python2.7 -c c
Requires an additional library ( but only at build time, at this problem
gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -I/home/esc/anaconda/lib/python2.7/site-packages/numpy/core/include can be overcome by shipping the
-I/home/esc/anaconda/include/python2.7 -c c
In file included from /home/esc/anaconda/lib/python2.7/site-packages/numpy/core/include/numpy/ndarraytypes.h:1722, generated C files)
from /home/esc/anaconda/lib/python2.7/site-packages/numpy/core/include/numpy/ndarrayobject.h:17,
from /home/esc/anaconda/lib/python2.7/site-packages/numpy/core/include/numpy/arrayobject.h:15,
from cos_doubles_wrap.c:2706: Example
/home/esc/anaconda/lib/python2.7/site-packages/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERS
The main Cython code for our cos_module
gcc -pthread -shared build/temp.linux-x86_64-2.7/cos_doubles.o build/temp.linux-x86_64-2.7/cos_doubles_wrap.o -L/home/esc/anaconda/lib -lpython2.7 is contained in the file cos_module.pyx:
-o /home/esc/git-working/scipy-lecture-notes/advanced/interfa
$ ls
build/ cos_doubles.h cos_doubles.py cos_doubles_wrap.c setup.py """ Example of wrapping cos function from math.h using Cython. """
cos_doubles.c cos_doubles.i _cos_doubles.so* numpy.i test_cos_doubles.py
cdef extern from "math.h":
double cos(double arg)
And, as before, we convince ourselves that it worked:
import numpy as np def cos_func(arg):
import pylab return cos(arg)
import cos_doubles
Note the additional keywords such as cdef and extern. Also the cos_func is then pure Python.
x = np.arange(0, 2 * np.pi, 0.1)
y = np.empty_like(x) Again we can use the standard distutils module, but this time we need some additional pieces from the
Cython.Distutils:
cos_doubles.cos_doubles_func(x, y) from distutils.core import setup, Extension
pylab.plot(x, y) from Cython.Distutils import build_ext
pylab.show()
setup(
cmdclass={'build_ext': build_ext},
ext_modules=[Extension("cos_module", ["cos_module.pyx"])]
)
Compiling this:
$ cd advanced/interfacing_with_c/cython
$ ls
2.8.5 Cython cos_module.pyx setup.py
$ python setup.py build_ext --inplace
running build_ext
Cython is both a Python-like language for writing C-extensions and an advanced compiler for this language. The
cythoning cos_module.pyx to cos_module.c
Cython language is a superset of Python, which comes with additional constructs that allow you call C functions
building 'cos_module' extension
and annotate variables and class attributes with c types. In this sense one could also call it a Python with types. creating build
In addition to the basic use case of wrapping native code, Cython supports an additional use-case, namely interac- creating build/temp.linux-x86_64-2.7
tive optimization. Basically, one starts out with a pure-Python script and incrementally adds Cython types to the gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -
gcc -pthread -shared build/temp.linux-x86_64-2.7/cos_module.o -L/home/esc/anaconda/lib -lpython2.7
bottleneck code to optimize only those code paths that really matter.
$ ls
In this sense it is quite similar to SWIG, since the code can be autogenerated but in a sense it also quite similar to build/ cos_module.c cos_module.pyx cos_module.so* setup.py
ctypes since the wrapping code can (almost) be written in Python.
And running it:
While others solutions that autogenerate code can be quite difficult to debug (for example SWIG) Cython comes
with an extension to the GNU debugger that helps debug Python, Cython and C code. In [1]: import cos_module
And (cos_module.c:506)()
/home/esc/git-working/scipy-lecture-notes/advanced/interfacing_with_c/cython/cos_module.so in cos_module.cos_func can be compiled using distutils:
build/ _cos_doubles.c cos_doubles.c cos_doubles.h _cos_doubles.pyx cos_doubles.so* setup.py (d) Empty array
test_cos_doubles.py
(e) Arrays with non-double types
And, as before, we convince ourselves that it worked:
4. Use the %timeit IPython magic to measure the execution time of the various solutions
import numpy as np
import pylab
import cos_doubles Python-C-API
x = np.arange(0, 2 * np.pi, 0.1) 1. Modify the Numpy example such that the function takes two input arguments, where the second is the
y = np.empty_like(x)
preallocated output array, making it similar to the other Numpy examples.
cos_doubles.cos_doubles_func(x, y) 2. Modify the example such that the function only takes a single input array and modifies this in place.
pylab.plot(x, y)
pylab.show() 3. Try to fix the example to use the new Numpy iterator protocol. If you manage to obtain a working solution,
please submit a pull-request on github.
4. You may have noticed, that the Numpy-C-API example is the only Numpy example that does not wrap
cos_doubles but instead applies the cos function directly to the elements of the Numpy array. Does
this have any advantages over the other techniques.
5. Can you wrap cos_doubles using only the Numpy-C-API. You may need to ensure that the arrays have
the correct type, are one dimensional and contiguous in memory.
In this section four different techniques for interfacing with native code have been presented. The table below 1. Modify the Numpy example such that cos_doubles_func handles the preallocation for you, thus mak-
roughly summarizes some of the aspects of the techniques. ing it more like the Numpy-C-API example.
x Part of CPython Compiled Autogenerated Numpy Support
Python-C-API True True False True SWIG
Ctypes True False False True
Swig False True True True 1. Look at the code that SWIG autogenerates, how much of it do you understand?
Cython False True True True
2. Modify the Numpy example such that cos_doubles_func handles the preallocation for you, thus mak-
Of all three presented techniques, Cython is the most modern and advanced. In particular, the ability to optimize ing it more like the Numpy-C-API example.
code incrementally by adding types to your Python code is unique.
3. Modify the cos_doubles C function so that it returns an allocated array. Can you wrap this using SWIG
typemaps? If not, why not? Is there a workaround for this specific situation? (Hint: you know the size of
2.8.7 Further Reading and References the output array, so it may be possible to construct a Numpy array from the returned double *.)
Gal Varoquauxs blog post about avoiding data copies provides some insight on how to handle memory Cython
management cleverly. If you ever run into issues with large datasets, this is a reference to come back to for
some inspiration. 1. Look at the code that Cython autogenerates. Take a closer look at some of the comments that Cython inserts.
What do you see?
2.8.8 Exercises 2. Look at the section Working with Numpy from the Cython documentation to learn how to incrementally
optimize a pure python script that uses Numpy.
Since this is a brand new section, the exercises are considered more as pointers as to what to look at next, so pick
3. Modify the Numpy example such that cos_doubles_func handles the preallocation for you, thus mak-
the ones that you find more interesting. If you have good ideas for exercises, please let us know!
ing it more like the Numpy-C-API example.
1. Download the source code for each example and compile and run them on your machine.
2. Make trivial changes to each example and convince yourself that this works. ( E.g. change cos for sin.)
3. Most of the examples, especially the ones involving Numpy may still be fragile and respond badly to input
errors. Look for ways to crash the examples, figure what the problem is and devise a potential solution.
Here are some ideas:
(a) Numerical overflow.
(b) Input and output arrays that have different lengths.
(c) Multidimensional array.
CHAPTER 3 Contents
Data representation and interaction (page 272)
Data as a table (page 272)
The panda data-frame (page 272)
Hypothesis testing: comparing two groups (page 276)
Students t-test: the simplest statistical test (page 277)
Paired tests: repeated measurements on the same indivuals (page 278)
Packages and applications Linear models, multiple factors, and analysis of variance (page 279)
formulas to specify statistical models in Python (page 279)
Multiple Regression: including multiple factors (page 282)
Post-hoc hypothesis testing: analysis of variance (ANOVA) (page 284)
More visualization: seaborn for statistical exploration (page 284)
Pairplot: scatter matrices (page 284)
lmplot: plotting a univariate regression (page 286)
This part of the Scipy lecture notes is dedicated to various scientific packages useful for extended needs. Testing for interactions (page 287)
Full examples (page 288)
Tip: In this document, the Python inputs are represented with the sign >>>.
Requirements Some of the examples of this tutorial are chosen around gender questions. The reason is that on such questions
controlling the truth of a claim actually matters to many people.
Standard scientific Python environment (numpy, scipy, matplotlib)
Pandas
Statsmodels
Seaborn 3.1.1 Data representation and interaction
To install Python and these dependencies, we recommend that you download Anaconda Python or Enthought
Canopy, or preferably use the package manager if you are under Ubuntu or other linux. Data as a table
See also: The setting that we consider for statistical analysis is that of multiple observations or samples described by
a set of different attributes or features. The data can than be seen as a 2D table, or matrix, with columns
Bayesian statistics in Python giving the different attributes of the data, and rows the observations. For instance, the data contained in
This chapter does not cover tools for Bayesian statistics. Of particular interest for Bayesian modelling is PyMC, examples/brain_size.csv:
which implements a probabilistic programming language in Python. "";"Gender";"FSIQ";"VIQ";"PIQ";"Weight";"Height";"MRI_Count"
"1";"Female";133;132;124;"118";"64.5";816932
"2";"Male";140;150;124;".";"72.5";1001121
"3";"Male";139;123;150;"143";"73.3";1038437
"4";"Male";133;129;128;"172";"68.8";965353
"5";"Female";137;132;134;"147";"65.0";951545
Manipulating data
Separator
It is a CSV file, but the separator is ; data is a pandas.DataFrame, that resembles Rs dataframe:
>>> data.shape # 40 rows and 8 columns
Reading from a CSV file: Using the above CSV file that gives observations of brain size and weight and IQ (40, 8)
(Willerman et al. 1991), the data are a mixture of numerical and categorical values:
>>> data.columns # It has columns
>>> import pandas Index([u'Unnamed: 0', u'Gender', u'FSIQ', u'VIQ', u'PIQ', u'Weight', u'Height', u'MRI_Count'], dty
>>> data = pandas.read_csv('examples/brain_size.csv', sep=';', na_values=".")
>>> data >>> print(data['Gender']) # Columns can be addressed by name
Unnamed: 0 Gender FSIQ VIQ PIQ Weight Height MRI_Count 0 Female
0 1 Female 133 132 124 118 64.5 816932 1 Male
1 2 Male 140 150 124 NaN 72.5 1001121 2 Male
2 3 Male 139 123 150 143 73.3 1038437 3 Male
3 4 Male 133 129 128 172 68.8 965353 4 Female
4 5 Female 137 132 134 147 65.0 951545 ...
...
>>> # Simpler selector
Warning: Missing values >>> data[data['Gender'] == 'Female']['VIQ'].mean()
109.45
The weight of the second individual is missing in the CSV file. If we dont specify the missing value (NA =
not available) marker, we will not be able to do statistical analysis.
Note: For a quick view on a large dataframe, use its describe method:
pandas.DataFrame.describe().
Creating from arrays: A pandas.DataFrame can also be seen as a dictionary of 1D series, eg arrays or
lists. If we have 3 numpy arrays:
groupby: splitting a dataframe on values of categorical variables:
>>> import numpy as np
>>> t = np.linspace(-6, 6, 20) >>> groupby_gender = data.groupby('Gender')
>>> sin_t = np.sin(t) >>> for gender, value in groupby_gender['VIQ']:
>>> cos_t = np.cos(t) ... print((gender, value.mean()))
('Female', 109.45)
We can expose them as a pandas.DataFrame: ('Male', 115.25)
>>> pandas.DataFrame({'t': t, 'sin': sin_t, 'cos': cos_t}) groupby_gender is a powerful object that exposes many operations on the resulting group of dataframes:
cos sin t
0 0.960170 0.279415 -6.000000 >>> groupby_gender.mean()
1 0.609977 0.792419 -5.368421 Unnamed: 0 FSIQ VIQ PIQ Weight Height MRI_Count
2 0.024451 0.999701 -4.736842 Gender
3 -0.570509 0.821291 -4.105263 Female 19.65 111.9 109.45 110.45 137.200000 65.765000 862654.6
4 -0.945363 0.326021 -3.473684 Male 21.35 115.0 115.25 111.60 166.444444 71.431579 954855.4
5 -0.955488 -0.295030 -2.842105
6 -0.596979 -0.802257 -2.210526 Tip: Use tab-completion on groupby_gender to find more. Other common grouping functions are median,
7 -0.008151 -0.999967 -1.578947 count (useful for checking to see the amount of missing values in different subsets) or sum. Groupby evaluation
8 0.583822 -0.811882 -0.947368 is lazy, no work is done until an aggregation function is applied.
...
Other inputs: pandas can input data from SQL, excel files, or other formats. See the pandas documentation.
Two populations
The IQ metrics are bimodal, as if there are 2 sub-populations.
Exercise
What is the mean value for VIQ for the full population?
How many males/females were included in this study?
Hint use tab completion to find out the methods that can be called, instead of mean in the above
example.
What is the average value of MRI counts expressed in log units, for males and females?
Note: groupby_gender.boxplot is used for the plots above (see this example (page 289)).
See also:
Scipy is a vast library. For a quick summary to the whole library, see the scipy (page 103) chapter.
Students t-test: the simplest statistical test Paired tests: repeated measurements on the same indivuals
PIQ, VIQ, and FSIQ give 3 measures of IQ. Let us test if FISQ
and PIQ are significantly different. We can use a 2 sample test:
>>> stats.ttest_ind(data['FSIQ'], data['PIQ'])
(...0.46563759638..., 0.64277250...)
The problem with this approach is that it forgets that there are links between observations: FSIQ and PIQ are
measured on the same individuals. Thus the variance due to inter-subject variability is confounding, and can be
removed, using a paired test, or repeated measures test:
>>> stats.ttest_rel(data['FSIQ'], data['PIQ'])
scipy.stats.ttest_1samp() tests if the population mean of data is likely to be equal to a given value (...1.784201940..., 0.082172638183...)
(technically if observations are drawn from a Gaussian distributions of given population mean). It returns the T
statistic, and the p-value (see the functions help):
>>> stats.ttest_1samp(data['VIQ'], 0)
(...30.088099970..., 1.32891964...e-28)
Tip: With a p-value of 10^-28 we can claim that the population mean for the IQ (VIQ measure) is not 0.
T-tests assume Gaussian errors. We can use a Wilcoxon signed-rank test, that relaxes this assumption:
>>> stats.wilcoxon(data['FSIQ'], data['PIQ'])
(274.5, 0.106594927...)
Note: The corresponding test in the non paired case is the MannWhitney U test,
scipy.stats.mannwhitneyu().
Exercice
Test the difference between weights in males and females.
Use non parametric statistics to test the difference between VIQ in males and females. Then we specify an OLS model and fit it:
Conclusion: we find that the data does not support the hypothesis that males and females have different
VIQ. >>> from statsmodels.formula.api import ols
>>> model = ols("y ~ x", data).fit()
Terminology:
Given two set of observations, x and y, we want to test the Statsmodel uses a statistical terminology: the y variable in statsmodel is called endogenous while the x
hypothesis that y is a linear function of x. In other terms: variable is called exogenous. This is discussed in more detail here.
= * + + To simplify, y (endogenous) is the value you are trying to predict, while x (exogenous) represents the features
you are using to make the prediction.
where e is observation noise. We will use the statmodels module to:
1. Fit a linear model. We will use the simplest strategy, ordinary least squares (OLS).
2. Test that coef is non zero. Exercise
Retrieve the estimated parameters from the model above. Hint: use tab-completion to find the relevent
attribute.
We can write a comparison between IQ of male and female using a linear model:
formulas for statistics in Python >>> model = ols("VIQ ~ Gender + 1", data).fit()
See the statsmodels documentation >>> print(model.summary())
OLS Regression Results Link to t-tests between different FSIQ and PIQ
==============================================================================
Dep. Variable: VIQ R-squared: 0.015
To compare different type of IQ, we need to create a long-form table, listing IQs, where the type of IQ is
Model: OLS Adj. R-squared: -0.010 indicated by a categorical variable:
Method: Least Squares F-statistic: 0.5969 >>> data_fisq = pandas.DataFrame({'iq': data['FSIQ'], 'type': 'fsiq'})
Date: ... Prob (F-statistic): 0.445 >>> data_piq = pandas.DataFrame({'iq': data['PIQ'], 'type': 'piq'})
Time: ... Log-Likelihood: -182.42 >>> data_long = pandas.concat((data_fisq, data_piq))
No. Observations: 40 AIC: 368.8 >>> print(data_long)
Df Residuals: 38 BIC: 372.2 iq type
Df Model: 1 0 133 fsiq
=======================================================================... 1 140 fsiq
coef std err t P>|t| [95.0% Conf. Int.] 2 139 fsiq
-----------------------------------------------------------------------... ...
Intercept 109.4500 5.308 20.619 0.000 98.704 120.196 31 137 piq
Gender[T.Male] 5.8000 7.507 0.773 0.445 -9.397 20.997 32 110 piq
=======================================================================... 33 86 piq
Omnibus: 26.188 Durbin-Watson: 1.709 ...
Prob(Omnibus): 0.000 Jarque-Bera (JB): 3.703
Skew: 0.010 Prob(JB): 0.157 >>> model = ols("iq ~ type", data_long).fit()
Kurtosis: 1.510 Cond. No. 2.62 >>> print(model.summary())
=======================================================================... OLS Regression Results
...
=======================================================================...
Tips on specifying model coef std err t P>|t| [95.0% Conf. Int.]
-----------------------------------------------------------------------...
Forcing categorical: the Gender is automatical detected as a categorical variable, and thus each of its
Intercept 113.4500 3.683 30.807 0.000 106.119 120.781
different values are treated as different entities. type[T.piq] -2.4250 5.208 -0.466 0.643 -12.793 7.943
An integer column can be forced to be treated as categorical using: ...
>>> model = ols('VIQ ~ C(Gender)', data).fit() We can see that we retrieve the same values for t-test and corresponding p-values for the effect of the type
Intercept: We can remove the intercept using - 1 in the formula, or force the use of an intercept using + of iq than the previous t-test:
1. >>> stats.ttest_ind(data['FSIQ'], data['PIQ'])
(...0.46563759638..., 0.64277250...)
Tip: By default, statsmodel treats a categorical variable with K possible values as K-1 dummy
boolean variables (the last level being absorbed into the intercept term). This is almost always a
good default choice - however, it is possible to specify different encodings for categorical variables
(http://statsmodels.sourceforge.net/devel/contrasts.html). Multiple Regression: including multiple factors
Consider a linear model explaining a variable z (the dependent variable) with 2 variables x and y:
= 1 + 2 + +
Such a model can be seen in 3D as fitting a plane to a cloud of (x, y, z) points.
In the above iris example, we wish to test if the petal length is different between versicolor and virginica, after
Example: the iris data (examples/iris.csv) removing the effect of sepal width. This can be formulated as testing the difference between the coefficient
associated to versicolor and virginica in the linear model estimated above (it is an Analysis of Variance, ANOVA).
Tip: Sepal and petal size tend to be related: bigger flowers are bigger! But is there in addition a systematic effect For this, we write a vector of contrast on the parameters estimated: we want to test "name[T.versicolor]
of species? - name[T.virginica]", with an F-test:
>>> print(model.f_test([0, 1, -1, 0]))
<F test: F=array([[ 3.24533535]]), p=[[ 0.07369059]], df_denom=146, df_num=1>
Exercice
Going back to the brain size + IQ data, test if the VIQ of male and female are different after removing the
effect of brain size, height and weight.
Tip: To switch back to seaborn settings, or understand better styling in seaborn, see the relevent section of
the seaborn documentation.
A regression capturing the relation between one variable and another, eg wage and eduction, can be plotted using
seaborn.lmplot():
>>> seaborn.lmplot(y='WAGE', x='EDUCATION', data=data)
Robust regression
Tip: Given that, in the above plot, there seems to be a couple of data points that are outside of the main
cloud to the right, they might be outliers, not representative of the population, but driving the regression.
To compute a regression that is less sentive to outliers, one must use a robust model. This is done in seaborn
using robust=True in the plotting functions, or in statsmodels by replacing the use of the OLS by a
Robust Linear Model, statsmodels.formula.api.rlm().
Examples
Code examples
Tip: The plot above is made of two different fits. We need to formulate a single model that tests for a variance of
slope across the to population. This is done via an interaction.
Plotting simple quantities of a pandas dataframe This example loads from a CSV file data with mixed nu-
merical and categorical entries, and plots a few quantities, separately for females and males, thanks to the pandas
integrated plotting tool (that uses matplotlib behind the scene).
See http://pandas.pydata.org/pandas-docs/stable/visualization.html
Python source code: plot_paired_boxplots.py
import pandas
plt.show()
Total running time of the example: 0.29 seconds ( 0 minutes 0.29 seconds)
Python source code: plot_pandas.py
import pandas
Total running time of the example: 0.96 seconds ( 0 minutes 0.96 seconds)
Analysis of Iris petal and sepal sizes Ilustrate an analysis on a real dataset:
Visualizing the data to formulate intuitions
Fitting of a linear model
Hypothesis test of the effect of a categorical variable in the presence of a continuous confound
Figure 3.3: Analysis of Iris petal and sepal sizes (page 292) Python source code: plot_iris_analysis.py
import matplotlib.pyplot as plt
import pandas
from pandas.tools import plotting
##############################################################################
# Plot a scatter matrix
# The parameter 'c' is passed to plt.scatter and will control the color
plotting.scatter_matrix(data, c=categories.labels, marker='o')
fig = plt.gcf()
fig.suptitle("blue: setosa, green: versicolor, red: virginica", size=13)
##############################################################################
# Statistical analysis
ANOVA results
df sum_sq mean_sq F PR(>F)
x 1 1588.873443 1588.873443 74.029383 8.560649e-08
Residual 18 386.329330 21.462741 NaN NaN
##############################################################################
# Generate and show the data
x = np.linspace(-5, 5, 20)
y = -5 + 3*x + 4 * np.random.normal(size=x.shape)
##############################################################################
# Multilinear regression model, calculating fit, P-values, confidence
# intervals etc.
# Convert the data into a Pandas DataFrame to use the formulas framework
# in statsmodels
data = pandas.DataFrame({'x': x, 'y': y})
print('\nANOVA results')
print(anova_results)
##############################################################################
# Plot the fitted model
plt.show()
Total running time of the example: 0.17 seconds ( 0 minutes 0.17 seconds)
Script output:
OLS Regression Results
==============================================================================
Dep. Variable: wage R-squared: 0.193
Model: OLS Adj. R-squared: 0.190
Method: Least Squares F-statistic: 63.42
Date: Mon, 21 Sep 2015 Prob (F-statistic): 2.01e-25
Time: 19:08:36 Log-Likelihood: 86.654
No. Observations: 534 AIC: -167.3
Df Residuals: 531 BIC: -154.5
Df Model: 2
==================================================================================
coef std err t P>|t| [95.0% Conf. Int.]
----------------------------------------------------------------------------------
Intercept 0.4053 0.046 8.732 0.000 0.314 0.496
gender[T.male] 0.1008 0.018 5.625 0.000 0.066 0.136
education 0.0334 0.003 9.768 0.000 0.027 0.040
Figure 3.5: Test for an education/gender interaction in wages (page 297) ==============================================================================
Omnibus: 4.675 Durbin-Watson: 1.792
Prob(Omnibus): 0.097 Jarque-Bera (JB): 4.876
Skew: -0.147 Prob(JB): 0.0873
Test for an education/gender interaction in wages Wages depend mostly on education. Here we investigate
Kurtosis: 3.365 Cond. No. 69.7
how this dependence is related to gender: not only does gender create an offset in wages, it also seems that wages
==============================================================================
increase more with education for males than females. OLS Regression Results
Does our data support this last hypothesis? We will test this using statsmodels formulas ==============================================================================
(http://statsmodels.sourceforge.net/stable/example_formulas.html). Dep. Variable: wage R-squared: 0.198
Model: OLS Adj. R-squared: 0.194
Method: Least Squares F-statistic: 43.72
Date: Mon, 21 Sep 2015 Prob (F-statistic): 2.94e-25
Time: 19:08:36 Log-Likelihood: 88.503 # joined model for male and female, not separate models for male and
No. Observations: 534 AIC: -169.0 # female. The reason is that a single model enables statistical testing
Df Residuals: 530 BIC: -151.9 result = sm.ols(formula='wage ~ education + gender', data=data).fit()
Df Model: 3 print(result.summary())
============================================================================================
coef std err t P>|t| [95.0% Conf. Int.] # The plots above highlight that there is not only a different offset in
-------------------------------------------------------------------------------------------- # wage but also a different slope
Intercept 0.2998 0.072 4.173 0.000 0.159 0.441
gender[T.male] 0.2750 0.093 2.972 0.003 0.093 0.457 # We need to model this using an interaction
education 0.0415 0.005 7.647 0.000 0.031 0.052 result = sm.ols(formula='wage ~ education + gender + education * gender',
education:gender[T.male] -0.0134 0.007 -1.919 0.056 -0.027 0.000 data=data).fit()
============================================================================== print(result.summary())
Omnibus: 4.838 Durbin-Watson: 1.825
Prob(Omnibus): 0.089 Jarque-Bera (JB): 5.000
Skew: -0.156 Prob(JB): 0.0821 # Looking at the p-value of the interaction of gender and education, the
Kurtosis: 3.356 Cond. No. 194. # data does not support the hypothesis that education benefits males
============================================================================== # more than female (p-value > 0.05).
if not os.path.exists('wages.txt'):
# Download the file if it is not present
urllib.urlretrieve('http://lib.stat.cmu.edu/datasets/CPS_85_Wages',
'wages.txt')
##############################################################################
# simple plotting Figure 3.6: Multiple Regression (page 300)
import seaborn
# Note that this model is not the plot displayed above: it is one
import numpy as np
import matplotlib.pyplot as plt
import pandas
##############################################################################
# Generate and show the data
x = np.linspace(-5, 5, 21)
# We generate a 2D grid
X, Y = np.meshgrid(x, x)
print('\nANOVA results')
print(anova_results)
plt.show()
Total running time of the example: 0.15 seconds ( 0 minutes 0.15 seconds)
Visualizing factors influencing wages This example uses seaborn to quickly plot various factors relating wages,
experience and eduction.
Seaborn (http://stanford.edu/~mwaskom/software/seaborn/) is a library that combines visualization and statistical
fits to show trends in data.
Note that importing seaborn changes the matplotlib style to have an excel-like feeling. This changes affect other
matplotlib figures. To restore defaults once this example is run, we would need to call plt.rcdefaults().
Script output:
loading seaborn
Python source code: plot_wage_data.py
# Standard library imports
import urllib
import os
##############################################################################
# Load the data
import pandas
if not os.path.exists('wages.txt'):
# Download the file if it is not present
urllib.urlretrieve('http://lib.stat.cmu.edu/datasets/CPS_85_Wages',
'wages.txt')
##############################################################################
# Plot scatter matrices highlighting different aspects
import seaborn
seaborn.pairplot(data, vars=['WAGE', 'AGE', 'EDUCATION'],
kind='reg')
##############################################################################
# Plot a simple regression
plt.show()
Total running time of the example: 6.58 seconds ( 0 minutes 6.58 seconds)
Air fares before and after 9/11 This is a business-intelligence (BI) like application.
What is interesting here is that we may want to study fares as a function of the year, paired accordingly to the
trips, or forgetting the year, only as a function of the trip endpoints.
Using statsmodels linear models, we find that both with an OLS (ordinary least square) and a robust fit, the
intercept and the slope are significantly non-zero: the air fares have decreased between 2000 and 2001, and their
dependence on distance travelled has also decreased
Script output:
OLS Regression Results
==============================================================================
Dep. Variable: fare R-squared: 0.275
Model: OLS Adj. R-squared: 0.275
Method: Least Squares F-statistic: 1585.
Date: Mon, 21 Sep 2015 Prob (F-statistic): 0.00
Time: 19:08:53 Log-Likelihood: -45532.
No. Observations: 8352 AIC: 9.107e+04
Df Residuals: 8349 BIC: 9.109e+04
Df Model: 2
=================================================================================
coef std err t P>|t| [95.0% Conf. Int.]
---------------------------------------------------------------------------------
Intercept 211.2428 2.466 85.669 0.000 206.409 216.076
Python source code: plot_airfare.py # A second plot, to show the effect of the year (ie the 9/11 effect)
seaborn.pairplot(data_flat, vars=['fare', 'dist', 'nb_passengers'],
# Standard library imports kind='reg', hue='year', markers='.')
import urllib
##############################################################################
# Plot the difference in fare
plt.figure(figsize=(5, 2))
seaborn.boxplot(data.fare_2001 - data.fare_2000)
plt.title('Fare: 2001 - 2000')
plt.subplots_adjust()
plt.figure(figsize=(5, 2))
seaborn.boxplot(data.nb_passengers_2001 - data.nb_passengers_2000)
plt.title('NB passengers: 2001 - 2000')
plt.subplots_adjust()
##############################################################################
# Statistical testing: dependence of fare on distance and number of
# passengers
import statsmodels.formula.api as sm
##############################################################################
# Statistical testing: regression of fare on distance: 2001/2000 difference
plt.show()
Total running time of the example: 9.49 seconds ( 0 minutes 9.49 seconds)
Relating Gender and IQ Going back to the brain size + IQ data, test if the VIQ of male and female are different
after removing the effect of brain size, height and weight.
Notice that here Gender is a categorical value. As it is a non-float data type, statsmodels is able to automatically
infer this.
Script output:
3.1. Statistics in Python 317 3.2. Sympy : Symbolic Mathematics in Python 318
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
The Rational class represents a rational number as a pair of two Integers: the numerator and the denominator, so
Rational(1,2) represents 1/2, Rational(5,2) 5/2 and so on: Printing
>>> from sympy import * Here we use the following setting for printing
>>> a = Rational(1,2)
>>> sympy.init_printing(use_unicode=False, wrap_line=True)
>>> a
1/2
Use simplify if you would like to transform an expression into a simpler form:
Symbols
>>> simplify((x + x*y) / x)
y + 1
In contrast to other Computer Algebra Systems, in SymPy you have to declare symbolic variables explicitly:
>>> from sympy import * Simplification is a somewhat vague term, and more precises alternatives to simplify exists: powsimp (simplifica-
>>> x = Symbol('x') tion of exponents), trigsimp (for trigonometric expressions) , logcombine, radsimp, together.
>>> y = Symbol('y')
>>> (x + y)**2
2
(x + y) 3.2.3 Calculus
Symbols can now be manipulated using some of python operators: +, -, *, ** (arithmetic), &, |, ~ , >>, <<
Limits
(boolean).
Limits are easy to use in SymPy, they follow the syntax limit(function, variable, point), so to compute the limit of
() as 0, you would issue limit(f, x, 0):
3.2. Sympy : Symbolic Mathematics in Python 319 3.2. Sympy : Symbolic Mathematics in Python 320
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
>>> limit(sin(x)/x, x, 0)
1 Exercises
you can also calculate the limit at infinity: 1. Calculate lim0 sin()/
2. Calculate the derivative of () for .
>>> limit(x, x, oo)
oo
3.2. Sympy : Symbolic Mathematics in Python 321 3.2. Sympy : Symbolic Mathematics in Python 322
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
In [8]: solve([x + 5*y - 2, -3*x + 6*y - 15], [x, y]) Differential Equations
Out[8]: {y: 1, x: -3}
SymPy is capable of solving (some) Ordinary Differential. To solve differential equations, use dsolve. First, create
It also has (limited) support for trascendental equations: an undefined function by passing cls=Function to the symbols function:
In [9]: solve(exp(x) + 1, x) >>> f, g = symbols('f g', cls=Function)
Out[9]: [pi*I]
f and g are now undefined functions. We can call f(x), and it will represent an unknown function:
Another alternative in the case of polynomial equations is factor. factor returns the polynomial factorized
>>> f(x)
into irreducible terms, and is capable of computing the factorization over various domains:
f(x)
In [10]: f = x**4 - 3*x**2 + 1
In [11]: factor(f) >>> f(x).diff(x, x) + f(x)
Out[11]: (1 + x - x**2)*(1 - x - x**2) 2
d
In [12]: factor(f, modulus=5) f(x) + ---(f(x))
Out[12]: (2 + x)**2*(2 - x)**2 2
dx
SymPy is also able to solve boolean equations, that is, to decide if a certain boolean expression is satisfiable or
not. For this, we use the function satisfiable: >>> dsolve(f(x).diff(x, x) + f(x), f(x))
f(x) = C1*sin(x) + C2*cos(x)
In [13]: satisfiable(x & y)
Out[13]: {x: True, y: True} Keyword arguments can be given to this function in order to help if find the best possible resolution system. For
example, if you know that it is a separable equations, you can use keyword hint=separable to force dsolve to
This tells us that (x & y) is True whenever x and y are both True. If an expression cannot be true, i.e. no values of resolve it as a separable equation:
its arguments can make the expression True, it will return False:
>>> dsolve(sin(x)*cos(f(x)) + cos(x)*sin(f(x))*f(x).diff(x), f(x), hint='separable')
In [14]: satisfiable(x & ~x) / _____________\ / _____________\
Out[14]: False | / C1 | | / C1 |
[f(x) = - asin| / ------- + 1 | + pi, f(x) = asin| / ------- + 1 | + pi,
| / 2 | | / 2 |
Exercises \\/ cos (x) / \\/ cos (x) /
Matrices Exercises
1. Solve the Bernoulli differential equation
Matrices are created as instances from the Matrix class:
>>> from sympy import Matrix
()
>>> Matrix([[1,0], [0,1]]) + () ()2 = 0
[1 0]
[ ] 2. Solve the same equation using hint=Bernoulli. What do you observe ?
[0 1]
3.2. Sympy : Symbolic Mathematics in Python 323 3.3. Scikit-image: image processing 324
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
(page 222).
Note that you should be familiar with the content of the previous chapter before reading the current one, as basic
operations such as masking and labeling are a prerequisite.
Chapters contents
Introduction and concepts (page 325)
scikit-image and the SciPy ecosystem (page 326)
Whats to be found in scikit-image (page 326)
Input/output, data types and colorspaces (page 327)
Data types (page 328)
Colorspaces (page 328)
Image preprocessing / enhancement (page 329)
Local filters (page 329)
Non-local filters (page 330)
Mathematical morphology (page 330)
Image segmentation (page 332)
Binary segmentation: foreground + background (page 332)
Marker based methods (page 333)
Measuring regions properties (page 335)
Data visualization and interaction (page 335)
Feature extraction for computer vision (page 337)
3.3.1 Introduction and concepts Recent versions of scikit-image is packaged in most Scientific Python distributions, such as Anaconda or
Enthought Canopy. It is also packaged for Ubuntu/Debian.
Images are NumPys arrays np.ndarray
>>> import skimage
image np.ndarray >>> from skimage import data # most functions are in subpackages
pixels array values: a[2, 3]
Most scikit-image functions take NumPy ndarrays as arguments
channels array dimensions
>>> camera = data.camera()
image encoding dtype (np.uint8, np.uint16, np.float) >>> camera.dtype
dtype('uint8')
filters functions (numpy, skimage, scipy) >>> camera.shape
(512, 512)
>>> import numpy as np
>>> from skimage import restoration
>>> check = np.zeros((9, 9))
>>> filtered_camera = restoration.denoise_bilateral(camera)
>>> check[::2, 1::2] = 1
>>> type(filtered_camera)
>>> check[1::2, ::2] = 1
<type 'numpy.ndarray'>
>>> import matplotlib.pyplot as plt
>>> plt.imshow(check, cmap='gray', interpolation='nearest')
Other Python packages are available for image processing and work with NumPy arrays:
scipy.ndimage : for nd-arrays. Basic filtering, mathematical morphology, regions properties
Mahotas
Also, powerful image processing libraries have Python bindings:
OpenCV (computer vision)
ITK (3D images and registration)
and many others
(but they are less Pythonic and NumPy friendly, to a variable extent).
Website: http://scikit-image.org/
3.3. Scikit-image: image processing 325 3.3. Scikit-image: image processing 326
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Some image processing routines need to work with float arrays, and may hence output an array with a different
type and the data range from the input array
>>> try:
... from skimage import filters
... except ImportError:
... from skimage import filter as filters
>>> camera_sobel = filters.sobel(camera)
>>> camera_sobel.max()
0.591502...
Warning: In the example above, we use the filters submodule of scikit-image, that has been renamed
Works with all data formats supported by the Python from filter to filters between versions 0.10 and 0.11, in order to avoid a collision with Pythons built-in
Imaging Library (or any other I/O plugin provided to imread with the plugin keyword argument). name filter.
Also works with URL image paths:
Utility functions are provided in skimage to convert both the dtype and the data range, following skimages
>>> logo = io.imread('http://scikit-image.org/_static/img/logo.png')
conventions: util.img_as_float, util.img_as_ubyte, etc.
Saving to files: See the user guide for more details.
>>> io.imsave('local_logo.png', logo)
Colorspaces
(imsave also uses an external plugin such as PIL)
Color images are of shape (N, M, 3) or (N, M, 4) (when an alpha channel encodes transparency)
>>> lena = data.lena()
>>> lena.shape
(512, 512, 3)
3.3. Scikit-image: image processing 327 3.3. Scikit-image: image processing 328
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Routines converting between different colorspaces (RGB, HSV, LAB etc.) are available in skimage.color : Non-local filters
color.rgb2hsv, color.lab2rgb, etc. Check the docstring for the expected dtype (and data range) of input
images. Non-local filters use a large region of the image (or all the image) to transform the value of one pixel:
>>> from skimage import exposure
3D images >>> camera = data.camera()
>>> camera_equalized = exposure.equalize_hist(camera)
Most functions of skimage can take 3D images as input arguments. Check the docstring to know if a
function can be used on 3D images (for example MRI or CT images).
Exercise
Open a color image on your disk as a NumPy array.
Find a skimage function computing the histogram of an image and plot the histogram of each
color channel
Convert the image to grayscale and plot its histogram.
Neighbourhood: square (choose size), disk, or more complicated structuring element. >>> from skimage import morphology
>>> morphology.diamond(1)
array([[0, 1, 0],
[1, 1, 1],
[0, 1, 0]], dtype=uint8)
3.3. Scikit-image: image processing 329 3.3. Scikit-image: image processing 330
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
3.3. Scikit-image: image processing 331 3.3. Scikit-image: image processing 332
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Watershed segmentation
If you have markers inside a set of regions, you can use these to segment the regions.
3.3. Scikit-image: image processing 333 3.3. Scikit-image: image processing 334
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Example: compute the size and perimeter of the two segmented regions:
>>> properties = measure.regionprops(labels_rw)
>>> [prop.area for prop in properties]
[770.0, 1168.0] The (ex-
>>> [prop.perimeter for prop in properties]
perimental) scikit-image viewer
[100.91..., 126.81...]
skimage.viewer = matplotlib-based canvas for displaying images + experimental Qt-based GUI-toolkit
See also:
>>> from skimage import viewer
for some properties, functions are available as well in scipy.ndimage.measurements with a different API >>> new_viewer = viewer.ImageViewer(coins)
(a list is returned). >>> new_viewer.show()
Visualize contour
>>> plt.figure()
<matplotlib.figure.Figure object at 0x...>
>>> plt.imshow(coins, cmap='gray')
<matplotlib.image.AxesImage object at 0x...>
>>> plt.contour(clean_border, [0.5])
<matplotlib.contour.QuadContourSet ...>
3.3. Scikit-image: image processing 335 3.3. Scikit-image: image processing 336
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
(this ex-
ample is taken from http://scikit-image.org/docs/stable/auto_examples/plot_corner.html)
Points of interest such as corners can then be used to match objects in different images, as described in http://scikit-
image.org/docs/stable/auto_examples/plot_matching.html
and many other applications of Computer Vision Traits and the Enthought Tool Suite are open source projects licensed under a BSD-style license.
3.3. Scikit-image: image processing 337 3.4. Traits: building interactive dialogs 338
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Intended Audience
Intermediate to advanced Python programmers
Requirements
Python 2.6 or 2.7 (www.python.org)
Either wxPython (http://www.wxpython.org/), PyQt (https://riverbankcomputing.com/software/pyqt/intro)
or PySide (https://pyside.github.io/docs/pyside/)
Numpy and Scipy (http://www.scipy.org)
Enthought Tool Suite 3.x or higher (http://code.enthought.com/projects)
All required software can be obtained by installing the EPD Free (https://store.enthought.com/)
Tutorial content
Introduction (page 339)
Example (page 340)
What are Traits (page 341)
Initialisation (page 342)
Validation (page 342)
Documentation (page 343)
Visualization: opening a dialog (page 343)
Deferral (page 345)
Notification (page 350)
Some more advanced traits (page 353) The main packages of the Enthought Tool Suite are:
Traits - component based approach to build our applications.
Kiva - 2D primitives supporting path based rendering, affine transforms, alpha blending and more.
3.4.1 Introduction
Enable - object based 2D drawing canvas.
Tip: The Enthought Tool Suite enable the construction of sophisticated application frameworks for data analysis, Chaco - plotting toolkit for building complex interactive 2D plots.
2D plotting and 3D visualization. These powerful, reusable components are released under liberal BSD-style
licenses. Mayavi - 3D visualization of scientific data based on VTK.
Envisage - application plugin framework for building scriptable and extensible applications
In this tutorial, we will focus on Traits.
3.4.2 Example
Throughout this tutorial, we will use an example based on a water resource management simple case. We will try
to model a dam and reservoir system. The reservoir and the dams do have a set of parameters :
Name
Minimal and maximal capacity of the reservoir [hm3]
Height and length of the dam [m]
Catchment area [km2]
Hydraulic head [m]
Power of the turbines [MW]
Minimal and maximal release [m3/s]
Efficiency of the turbines
3.4. Traits: building interactive dialogs 339 3.4. Traits: building interactive dialogs 340
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
The reservoir has a known behaviour. One part is related to the energy production based on the water released. A reservoir = Reservoir(name='Lac de Vouglans', max_storage=605)
simple formula for approximating electric power production at a hydroelectric plant is = , where:
is Power in watts,
Initialisation
is the density of water (~1000 kg/m3),
is height in meters, All the traits do have a default value that initialise the variables. For example, the basic python types do have the
following trait equivalents:
is flow rate in cubic meters per second,
Trait Python Type Built-in Default Value
is acceleration due to gravity of 9.8 m/s2, Bool Boolean False
is a coefficient of efficiency ranging from 0 to 1. Complex Complex number 0+0j
Float Floating point number 0.0
Tip: Annual electric energy production depends on the available water supply. In some installations the water Int Plain integer 0
flow rate can vary by a factor of 10:1 over the course of a year. Long Long integer 0L
Str String
The second part of the behaviour is the state of the storage that depends on controlled and uncontrolled parameters Unicode Unicode u
:
A number of other predefined trait type do exist : Array, Enum, Range, Event, Dict, List, Color, Set, Expression,
+1 = + Code, Callable, Type, Tuple, etc.
Custom default values can be defined in the code:
Warning: The data used in this tutorial are not real and might even not have sense in the reality.
from traits.api import HasTraits, Str, Float
class Reservoir(HasTraits):
3.4.3 What are Traits
name = Str
A trait is a type definition that can be used for normal Python object attributes, giving the attributes some additional max_storage = Float(100)
characteristics:
reservoir = Reservoir(name='Lac de Vouglans')
Standardization:
Initialization
Complex initialisation
Validation
When a complex initialisation is required for a trait, a _XXX_default magic method can be implemented. It
Deferral will be lazily called when trying to access the XXX trait. For example:
Notification def _name_default(self):
""" Complex initialisation of the reservoir name. """
Visualization
Documentation return 'Undefined'
A class can freely mix trait-based attributes with normal Python attributes, or can opt to allow the use of only a
fixed or open set of trait attributes within the class. Trait attributes defined by a class are automatically inherited
by any subclass derived from the class. Validation
The common way of creating a traits class is by extending from the HasTraits base class and defining class traits
: Every trait does validation when the user tries to set its content:
reservoir = Reservoir(name='Lac de Vouglans', max_storage=605)
from traits.api import HasTraits, Str, Float
reservoir.max_storage = '230'
class Reservoir(HasTraits):
---------------------------------------------------------------------------
TraitError Traceback (most recent call last)
name = Str
/Users/dpinte/projects/scipy-lecture-notes/advanced/traits/<ipython-input-7-979bdff9974a> in <modu
max_storage = Float
----> 1 reservoir.max_storage = '230'
Warning: For Traits 3.x users /Users/dpinte/projects/ets/traits/traits/trait_handlers.pyc in error(self, object, name, value)
If using Traits 3.x, you need to adapt the namespace of the traits packages: 166 """
traits.api should be enthought.traits.api 167 raise TraitError( object, name, self.full_info( object, name, value ),
traitsui.api should be enthought.traits.ui.api --> 168 value )
169
170 def arg_error ( self, method, arg_num, object, name, value ):
Using a traits class like that is as simple as any other Python class. Note that the trait value are passed using
keyword arguments:
3.4. Traits: building interactive dialogs 341 3.4. Traits: building interactive dialogs 342
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
reservoir1 = Reservoir()
TraitError: The 'max_storage' trait of a Reservoir instance must be a float, but a value of '23' <type 'str'> was specified.
reservoir1.edit_traits()
Documentation
By essence, all the traits do provide documentation about the model itself. The declarative approach to the creation
of classes makes it self-descriptive:
from traits.api import HasTraits, Str, Float
class Reservoir(HasTraits):
name = Str
max_storage = Float(100)
The desc metadata of the traits can be used to provide a more descriptive information about the trait :
from traits.api import HasTraits, Str, Float
class Reservoir(HasTraits):
name = Str TraitsUI simplifies the way user interfaces are created. Every trait on a HasTraits class has a default editor that
max_storage = Float(100, desc='Maximal storage [hm3]')
will manage the way the trait is rendered to the screen (e.g. the Range trait is displayed as a slider, etc.).
Lets now define the complete reservoir class: In the very same vein as the Traits declarative way of creating classes, TraitsUI provides a declarative interface to
build user interfaces code:
from traits.api import HasTraits, Str, Float, Range
from traits.api import HasTraits, Str, Float, Range
class Reservoir(HasTraits): from traitsui.api import View
name = Str
max_storage = Float(1e6, desc='Maximal storage [hm3]') class Reservoir(HasTraits):
max_release = Float(10, desc='Maximal release [m3/s]') name = Str
head = Float(10, desc='Hydraulic head [m]') max_storage = Float(1e6, desc='Maximal storage [hm3]')
efficiency = Range(0, 1.) max_release = Float(10, desc='Maximal release [m3/s]')
head = Float(10, desc='Hydraulic head [m]')
def energy_production(self, release): efficiency = Range(0, 1.)
''' Returns the energy production [Wh] for the given release [m3/s]
''' traits_view = View(
power = 1000 * 9.81 * self.head * release * self.efficiency 'name', 'max_storage', 'max_release', 'head', 'efficiency',
return power * 3600 title = 'Reservoir',
resizable = True,
)
if __name__ == '__main__':
reservoir = Reservoir( def energy_production(self, release):
name = 'Project A', ''' Returns the energy production [Wh] for the given release [m3/s]
max_storage = 30, '''
max_release = 100.0, power = 1000 * 9.81 * self.head * release * self.efficiency
head = 60, return power * 3600
efficiency = 0.8
)
if __name__ == '__main__':
release = 80 reservoir = Reservoir(
print 'Releasing {} m3/s produces {} kWh'.format( name = 'Project A',
release, reservoir.energy_production(release) max_storage = 30,
) max_release = 100.0,
head = 60,
efficiency = 0.8
Visualization: opening a dialog )
The Traits library is also aware of user interfaces and can pop up a default view for the Reservoir class: reservoir.configure_traits()
3.4. Traits: building interactive dialogs 343 3.4. Traits: building interactive dialogs 344
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
A special trait allows to manage events and trigger function calls using the magic _xxxx_fired method:
from traits.api import HasTraits, Instance, DelegatesTo, Float, Range, Event
class ReservoirState(HasTraits):
"""Keeps track of the reservoir state given the initial storage.
Being able to defer the definition of a trait and its value to another object is a powerful feature of Traits. # state attributes
from traits.api import HasTraits, Instance, DelegatesTo, Float, Range storage = Range(low='min_storage', high='max_storage')
3.4. Traits: building interactive dialogs 345 3.4. Traits: building interactive dialogs 346
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Dependency between objects can be made automatic using the trait Property. The depends_on attribute ex- )
presses the dependency between the property and other traits. When the other traits gets changed, the property is
invalidated. Again, Traits uses magic method names for the property : state = ReservoirState(reservoir=projectA, storage=25)
state.release = 4
_get_XXX for the getter of the XXX Property trait
state.inflows = 0
_set_XXX for the setter of the XXX Property trait
state.print_state()
from traits.api import HasTraits, Instance, DelegatesTo, Float, Range
from traits.api import Property
Note: Caching property
from reservoir import Reservoir Heavy computation or long running computation might be a problem when accessing a property where the inputs
have not changed. The @cached_property decorator can be used to cache the value and only recompute them once
class ReservoirState(HasTraits): invalidated.
"""Keeps track of the reservoir state given the initial storage.
For the simplicity of the example, the release is considered in Lets extend the TraitsUI introduction with the ReservoirState example:
hm3/timestep and not in m3/s.
from traits.api import HasTraits, Instance, DelegatesTo, Float, Range, Property
"""
from traitsui.api import View, Item, Group, VGroup
reservoir = Instance(Reservoir, ())
max_storage = DelegatesTo('reservoir')
from reservoir import Reservoir
min_release = Float
max_release = DelegatesTo('reservoir')
class ReservoirState(HasTraits):
"""Keeps track of the reservoir state given the initial storage.
# state attributes
storage = Property(depends_on='inflows, release')
For the simplicity of the example, the release is considered in
hm3/timestep and not in m3/s.
# control attributes
"""
inflows = Float(desc='Inflows [hm3]')
reservoir = Instance(Reservoir, ())
release = Range(low='min_release', high='max_release')
name = DelegatesTo('reservoir')
spillage = Property(
max_storage = DelegatesTo('reservoir')
desc='Spillage [hm3]', depends_on=['storage', 'inflows', 'release']
max_release = DelegatesTo('reservoir')
)
min_release = Float
### Private traits. ######################################################
# state attributes
_storage = Float
storage = Property(depends_on='inflows, release')
### Traits property implementation. ######################################
# control attributes
def _get_storage(self):
inflows = Float(desc='Inflows [hm3]')
new_storage = self._storage - self.release + self.inflows
release = Range(low='min_release', high='max_release')
return min(new_storage, self.max_storage)
spillage = Property(
desc='Spillage [hm3]', depends_on=['storage', 'inflows', 'release']
def _set_storage(self, storage_value):
)
self._storage = storage_value
### Traits view ##########################################################
def _get_spillage(self):
traits_view = View(
new_storage = self._storage - self.release + self.inflows
Group(
overflow = new_storage - self.max_storage
VGroup(Item('name'), Item('storage'), Item('spillage'),
return max(overflow, 0)
label = 'State', style = 'readonly'
),
def print_state(self):
VGroup(Item('inflows'), Item('release'), label='Control'),
print 'Storage\tRelease\tInflows\tSpillage'
)
str_format = '\t'.join(['{:7.2f}'for i in range(4)])
)
print str_format.format(self.storage, self.release, self.inflows,
self.spillage)
### Private traits. ######################################################
print '-' * 79
_storage = Float
if __name__ == '__main__':
### Traits property implementation. ######################################
projectA = Reservoir(
def _get_storage(self):
name = 'Project A',
new_storage = self._storage - self.release + self.inflows
max_storage = 30,
return min(new_storage, self.max_storage)
max_release = 5,
hydraulic_head = 60,
def _set_storage(self, storage_value):
efficiency = 0.8
3.4. Traits: building interactive dialogs 347 3.4. Traits: building interactive dialogs 348
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
reservoir.installed_capacity = 8
print turbine.power, reservoir.installed_capacity
Notification
Traits implements a Listener pattern. For each trait a list of static and dynamic listeners can be fed with callbacks.
When the trait does change, all the listeners are called.
Static listeners are defined using the _XXX_changed magic methods:
from traits.api import HasTraits, Instance, DelegatesTo, Float, Range
class ReservoirState(HasTraits):
"""Keeps track of the reservoir state given the initial storage.
"""
Some use cases need the delegation mechanism to be broken by the user when setting the value of the trait. The reservoir = Instance(Reservoir, ())
min_storage = Float
PrototypeFrom trait implements this behaviour.
max_storage = DelegatesTo('reservoir')
from traits.api import HasTraits, Str, Float, Range, PrototypedFrom, Instance min_release = Float
max_release = DelegatesTo('reservoir')
class Turbine(HasTraits):
turbine_type = Str # state attributes
power = Float(1.0, desc='Maximal power delivered by the turbine [Mw]') storage = Range(low='min_storage', high='max_storage')
# control attributes
class Reservoir(HasTraits): inflows = Float(desc='Inflows [hm3]')
name = Str release = Range(low='min_release', high='max_release')
max_storage = Float(1e6, desc='Maximal storage [hm3]') spillage = Float(desc='Spillage [hm3]')
max_release = Float(10, desc='Maximal release [m3/s]')
3.4. Traits: building interactive dialogs 349 3.4. Traits: building interactive dialogs 350
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
def print_state(self):
state = ReservoirState(reservoir=projectA, storage=10)
print 'Storage\tRelease\tInflows\tSpillage'
str_format = '\t'.join(['{:7.2f}'for i in range(4)])
#register the dynamic listener
print str_format.format(self.storage, self.release, self.inflows,
state.on_trait_change(wake_up_watchman_if_spillage, name='spillage')
self.spillage)
print '-' * 79
state.release = 90
state.inflows = 0
### Traits listeners #####################################################
state.print_state()
def _release_changed(self, new):
"""When the release is higher than zero, warn all the inhabitants of
print 'Forcing spillage'
the valley.
state.inflows = 100
"""
state.release = 0
if new > 0:
print 'Why do we have two executions of the callback ?'
print 'Warning, we are releasing {} hm3 of water'.format(new)
The dynamic trait notification signatures are not the same as the static ones :
if __name__ == '__main__': def wake_up_watchman(): pass
projectA = Reservoir(
name = 'Project A', def wake_up_watchman(new): pass
max_storage = 30,
def wake_up_watchman(name, new): pass
max_release = 100.0,
hydraulic_head = 60, def wake_up_watchman(object, name, new): pass
efficiency = 0.8
) def wake_up_watchman(object, name, old, new): pass
Removing a dynamic listener can be done by:
state = ReservoirState(reservoir=projectA, storage=10)
state.release = 90 calling the remove_trait_listener method on the trait with the listener method as argument,
state.inflows = 0
state.print_state() calling the on_trait_change method with listener method and the keyword remove=True,
deleting the instance that holds the listener.
The static trait notification signatures can be:
Listeners can also be added to classes using the on_trait_change decorator:
def _release_changed(self): pass
from traits.api import HasTraits, Instance, DelegatesTo, Float, Range
def _release_changed(self, new): pass from traits.api import Property, on_trait_change
def _release_changed(self, old, new): pass
from reservoir import Reservoir
def _release_changed(self, name, old, new pass
class ReservoirState(HasTraits):
"""Keeps track of the reservoir state given the initial storage.
Listening to all the changes
For the simplicity of the example, the release is considered in
To listen to all the changes on a HasTraits class, the magic _any_trait_changed method can be implemented.
hm3/timestep and not in m3/s.
"""
In many situations, you do not know in advance what type of listeners need to be activated. Traits offers the ability reservoir = Instance(Reservoir, ())
to register listeners on the fly with the dynamic listeners max_storage = DelegatesTo('reservoir')
min_release = Float
from reservoir import Reservoir max_release = DelegatesTo('reservoir')
from reservoir_state_property import ReservoirState
# state attributes
def wake_up_watchman_if_spillage(new_value): storage = Property(depends_on='inflows, release')
if new_value > 0:
print 'Wake up watchman! Spilling {} hm3'.format(new_value) # control attributes
inflows = Float(desc='Inflows [hm3]')
if __name__ == '__main__': release = Range(low='min_release', high='max_release')
projectA = Reservoir( spillage = Property(
name = 'Project A', desc='Spillage [hm3]', depends_on=['storage', 'inflows', 'release']
max_storage = 30, )
max_release = 100.0,
hydraulic_head = 60,
efficiency = 0.8 ### Private traits. ######################################################
) _storage = Float
3.4. Traits: building interactive dialogs 351 3.4. Traits: building interactive dialogs 352
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
The following example demonstrate the usage of the Enum and List traits :
class Reservoir(HasTraits):
from traits.api import HasTraits, Str, Float, Range, Enum, List
name = Str
from traitsui.api import View, Item
max_storage = Float(1e6, desc='Maximal storage [hm3]')
max_release = Float(10, desc='Maximal release [m3/s]')
class IrrigationArea(HasTraits):
head = Float(10, desc='Hydraulic head [m]')
name = Str
efficiency = Range(0, 1.)
surface = Float(desc='Surface [ha]')
crop = Enum('Alfalfa', 'Wheat', 'Cotton')
irrigated_areas = List(IrrigationArea)
class Reservoir(HasTraits):
total_crop_surface = Property(depends_on='irrigated_areas.surface')
name = Str
max_storage = Float(1e6, desc='Maximal storage [hm3]')
def _get_total_crop_surface(self):
max_release = Float(10, desc='Maximal release [m3/s]')
return sum([iarea.surface for iarea in self.irrigated_areas])
head = Float(10, desc='Hydraulic head [m]')
efficiency = Range(0, 1.)
def energy_production(self, release):
irrigated_areas = List(IrrigationArea)
''' Returns the energy production [Wh] for the given release [m3/s]
'''
def energy_production(self, release):
power = 1000 * 9.81 * self.head * release * self.efficiency
''' Returns the energy production [Wh] for the given release [m3/s]
return power * 3600
'''
3.4. Traits: building interactive dialogs 353 3.4. Traits: building interactive dialogs 354
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
import numpy as np
class ReservoirEvolution(HasTraits):
reservoir = Instance(Reservoir)
name = DelegatesTo('reservoir')
initial_stock = Float
stock = Property(depends_on='inflows, releases, initial_stock')
3.4. Traits: building interactive dialogs 355 3.4. Traits: building interactive dialogs 356
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Points
Author: Gal Varoquaux
Tip: Mayavi is an interactive 3D plotting package. matplotlib (page 81) can also do simple 3D plotting, but
Mayavi relies on a more powerful engine ( VTK ) and is more suited to displaying large or complex data.
Chapters contents
Mlab: the scripting interface (page 357)
3D plotting functions (page 358)
* Points (page 358)
* Lines (page 358)
* Elevation surface (page 359)
* Arbitrary regular mesh (page 359)
* Volumetric data (page 360)
Figures and decorations (page 360) Hint: Points in 3D, represented with markers (or glyphs) and optionaly different sizes.
* Figure management (page 360)
x, y, z, value = np.random.random((4, 40))
* Changing plot properties (page 360)
mlab.points3d(x, y, z, value)
* Decorations (page 362)
Interactive work (page 363)
The pipeline dialog (page 363)
The script recording button (page 364) Lines
Slicing and dicing data: sources, modules and filters (page 364)
An example: inspecting magnetic fields (page 364)
Different views on data: sources and modules (page 364)
* Different sources: scatters and fields (page 365)
* Transforming data: filters (page 366)
* mlab.pipeline: the scripting layer (page 366)
Animating the data (page 366)
Making interactive dialogs (page 367)
A simple dialog (page 367)
Making it interactive (page 368)
Putting it together (page 369)
3.5.1 Mlab: the scripting interface Hint: A line connecting points in 3D, with optional thickness and varying color.
The mayavi.mlab module provides simple plotting functions to apply to numpy arrays, similar to matplotlib or mlab.clf() # Clear the figure
matlabs plotting interface. Try using them in IPython, by starting IPython with the switch --gui=wx. t = np.linspace(0, 20, 200)
mlab.plot3d(np.sin(t), np.cos(t), 0.1*t, t)
3.5. 3D plotting with Mayavi 357 3.5. 3D plotting with Mayavi 358
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Hint: A surface given by its elevation, coded as a 2D array Hint: If your data is dense in 3D, it is more difficult to display. One option is to take iso-contours of the data.
mlab.clf() mlab.clf()
x, y = np.mgrid[-10:10:100j, -10:10:100j] x, y, z = np.mgrid[-5:5:64j, -5:5:64j, -5:5:64j]
r = np.sqrt(x**2 + y**2) values = x*x*0.5 + y*y + z*z*2.0
z = np.sin(r)/r mlab.contour3d(values)
mlab.surf(z, warp_scale='auto')
This function works with a regular orthogonal grid: the value array is a 3D array that gives the shape of the
grid.
3.5. 3D plotting with Mayavi 359 3.5. 3D plotting with Mayavi 360
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Tip: In general, many properties of the various objects on the figure can be changed. If these visualization are
created via mlab functions, the easiest way to change them is to use the keyword arguments of these functions,
as described in the docstrings.
In [11]: mlab.outline(Out[7])
Out[11]: <enthought.mayavi.modules.outline.Outline object at 0xdd21b6c>
In [12]: mlab.axes(Out[7])
Out[12]: <enthought.mayavi.modules.axes.Axes object at 0xd2e4bcc>
3.5. 3D plotting with Mayavi 361 3.5. 3D plotting with Mayavi 362
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
To find out what code can be used to program these changes, click on the red button as you modify those properties,
and it will generate the corresponding lines of code.
Suppose we are simulating the magnetic field generated by Helmholtz coils. The
examples/compute_field.py script does this computation and gives you a B array, that is (3 x n),
where the first axis is the direction of the field (Bx, By, Bz), and the second axis the index number of the point.
Arrays X, Y and Z give the positions of these data points.
Excercise
Visualize this field. Your goal is to make sure that the simulation code is correct.
Warning: extent: If we specified extents for a plotting object, mlab.outline and mlab.axes
dont get them by default.
Tip: The quickest way to create beautiful visualization with Mayavi is probably to interactively tweak the various
settings.
Click on the Mayavi button in the scene, and you can control properties of objects with dialogs.
Suggestions
If you compute the norm of the vector field, you can apply an isosurface to it.
using mayavi.mlab.quiver3d() you can plot vectors. You can also use the masking options
(in the GUI) to make the plot a bit less dense.
Set the background of the figure in the Mayavi Scene node Tip: As we see above, it may be desirable to look at the same data in different ways.
Set the colormap in the Colors and legends node
Mayavi visualization are created by loading the data in a data source and then displayed on the screen using
Right click on the node to add modules or filters modules.
3.5. 3D plotting with Mayavi 363 3.5. 3D plotting with Mayavi 364
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
This can be seen by looking at the pipeline view. By right-clicking on the nodes of the pipeline, you can add Transforming data: filters
new modules.
If you create a vector field, you may want to visualize the iso-contours of its magnitude. But the isosurface module
Quiz can only be applied to scalar data, and not vector data. We can use a filter, ExtractVectorNorm to add this
scalar value to the vector field.
Why is it not possible to add a VectorCutPlane to the vectors created by
mayavi.mlab.quiver3d()? Filters apply a transformation to data, and can be added between sources and modules
Excercice
Different sources: scatters and fields Using the GUI, add the ExtractVectorNorm filter to display iso-contours of the field magnitude.
Unstructured and unconnected data: a scatter Structured and connected data: a field
mlab.points3d, mlab.quiver3d mlab.contour3d
Data sources corresponding to scatters can be created with mayavi.mlab.pipeline.scalar_scatter()
or mayavi.mlab.pipeline.vector_scatter(); field data sources can be created with
mlab.pipeline.scalar_field() or mlab.pipeline.vector_field().
Exercice:
1. Create a contour (for instance of the magnetic field norm) by using one of those functions and adding Excercice
the right module by clicking on the GUI dialog.
Using the mlab.pipeline interface, generate a complete visualization, with iso-contours of the field magni-
2. Create the right source to apply a vector_cut_plane and reproduce the picture of the magnetic field
tude, and a vector cut plane.
shown previously.
(click on the figure for a solution)
Note that one of the difficulties is providing the data in the right form (number of arrays, shape) to the
functions. This is often the case with real-life data.
If you have built a visualization, using the mlab plotting functions, or the mlab.pipeline function, we can
update the data by assigning new values to the mlab_source attributes
3.5. 3D plotting with Mayavi 365 3.5. 3D plotting with Mayavi 366
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
x , y , z = np.ogrid[-5:5:100j ,-5:5:100j, -5:5:100j] for embedding it in the dialog. The view of this dialog is defined by the view attribute of the object. In the init of
scalars = np.sin(x * y * z) / (x * y * z) this object, we populate the 3D scene with a curve.
Finally, the configure_traits method creates the dialog and starts the event loop.
iso = mlab.contour3d(scalars, transparent=True, contours=[0.5])
for i in range(1, 20):
scalars = np.sin(i * x * y * z) /(x * y * z) See also:
iso.mlab_source.scalars = scalars
There are a few things to be aware of when doing dialogs with Mayavi. Please read the Mayavi documentation
See also:
More details in the Mayavi documentation Making it interactive
We can combine the Traits events handler (page 350) with the mlab_source to modify the visualization with
Event loops the dialog.
For the interaction with the user (for instance changing the view with the mouse), Mayavi needs some time We will enable the user to vary the n_turns parameter in the definition of the curve. For this, we need:
to process these events. The for loop above prevents this. The Mayavi documentation details a workaround
to define an n_turns attribute on our visualization object, so that it can appear in the dialog. We use a
Range type.
to wire modification of this attribute to a recomputation of the curve. For this, we use the
3.5.5 Making interactive dialogs
on_traits_change decorator.
It is very simple to make interactive dialogs with Mayavi using the Traits library (see the dedicated chapter Traits:
building interactive dialogs (page 338)).
A simple dialog
def curve(n_turns):
"The function creating the x, y, z coordinates needed to plot"
phi = np.linspace(0, 2*np.pi, 2000)
return [np.cos(phi) * (1 + 0.5*np.cos(n_turns*phi)),
np.sin(phi) * (1 + 0.5*np.cos(n_turns*phi)),
0.5*np.sin(n_turns*phi)]
class Visualization(HasTraits):
"The class that contains the dialog"
scene = Instance(MlabSceneModel, ())
def __init__(self):
HasTraits.__init__(self)
x, y, z = curve(n_turns=2) from traits.api import Range, on_trait_change
# Populating our plot
self.plot = self.scene.mlab.plot3d(x, y, z) class Visualization(HasTraits):
n_turns = Range(0, 30, 11)
# Describe the dialog scene = Instance(MlabSceneModel, ())
view = View(Item('scene', height=300, show_label=False,
editor=SceneEditor()), def __init__(self):
HGroup('n_turns'), resizable=True) HasTraits.__init__(self)
x, y, z = curve(self.n_turns)
# Fire up the dialog self.plot = self.scene.mlab.plot3d(x, y, z)
Visualization().configure_traits()
@on_trait_change('n_turns')
def update_plot(self):
Tip: Let us read a bit the code above (examples/mlab_dialog.py). x, y, z = curve(self.n_turns)
First, the curve function is used to compute the coordinate of the curve we want to plot. self.plot.mlab_source.set(x=x, y=y, z=z)
Second, the dialog is defined by an object inheriting from HasTraits, as it is done with Traits (page 338). The view = View(Item('scene', height=300, show_label=False,
important point here is that a Mayavi scene is added as a specific Traits attribute (Instance). This is important
3.5. 3D plotting with Mayavi 367 3.5. 3D plotting with Mayavi 368
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
You can look at the example_coil_application.py to see a full-blown application for coil design in 270 lines of
code.
First we will load some data to play with. The data we will use is a very simple flower database known as the Iris
dataset.
Prerequisites
We have 150 observations of the iris flower specifying some measurements: sepal length, sepal width, petal length
Numpy, Scipy and petal width together with its subtype: Iris setosa, Iris versicolor, Iris virginica.
IPython
To load the dataset into a Python object:
matplotlib
scikit-learn (http://scikit-learn.org) >>> from sklearn import datasets
>>> iris = datasets.load_iris()
This data is stored in the .data member, which is a (n_samples, n_features) array.
>>> iris.data.shape
(150, 4)
The class of each observation is stored in the .target attribute of the dataset. This is an integer 1D array of
length n_samples:
>>> iris.target.shape
(150,)
>>> import numpy as np
>>> np.unique(iris.target)
array([0, 1, 2])
3.6. scikit-learn: machine learning in Python 369 3.6. scikit-learn: machine learning in Python 370
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
The digits dataset consists of 1797 images, where each one is an 8x8 pixel image representing a hand-written
digit
>>> digits = datasets.load_digits()
>>> digits.images.shape
(1797, 8, 8)
>>> import pylab as pl
>>> pl.imshow(digits.images[0], cmap=pl.cm.gray_r) The k-nearest neighbors classifier internally uses an algorithm based on ball trees to represent the samples it is
<matplotlib.image.AxesImage object at ...> trained on.
To use this dataset with the scikit, we transform each 8x8 image into a vector of length 64 KNN (k-nearest neighbors) classification example:
>>> data = digits.images.reshape((digits.images.shape[0], -1)) >>> # Create and fit a nearest-neighbor classifier
>>> from sklearn import neighbors
>>> knn = neighbors.KNeighborsClassifier()
>>> knn.fit(iris.data, iris.target)
Learning and Predicting KNeighborsClassifier(...)
>>> knn.predict([[0.1, 0.2, 0.3, 0.4]])
array([0])
Now that weve got some data, we would like to learn from it and predict on new one. In scikit-learn, we
learn from existing data by creating an estimator and calling its fit(X, Y) method.
>>> from sklearn import svm Training set and testing set
>>> clf = svm.LinearSVC()
>>> clf.fit(iris.data, iris.target) # learn from the data When experimenting with learning algorithms, it is important not to test the prediction of an estimator on
LinearSVC(...) the data used to fit the estimator. Indeed, with the kNN estimator, we would always get perfect prediction on
the training set.
Once we have learned from the data, we can use our model to predict the most likely outcome on unseen data:
>>> perm = np.random.permutation(iris.target.size)
>>> clf.predict([[ 5.0, 3.6, 1.3, 0.25]]) >>> iris.data = iris.data[perm]
array([0]) >>> iris.target = iris.target[perm]
>>> knn.fit(iris.data[:100], iris.target[:100])
KNeighborsClassifier(...)
Note: We can access the parameters of the model via its attributes ending with an underscore: >>> knn.score(iris.data[100:], iris.target[100:])
>>> clf.coef_ 0.95999...
array([[ 0...]]) Bonus question: why did we use a random permutation?
The simplest possible classifier is the nearest neighbor: given a new observation, take the label of the training SVMs try to construct a hyperplane maximizing the margin between the two classes. It selects a subset of the
samples closest to it in n-dimensional space, where n is the number of features in each sample. input, called the support vectors, which are the observations closest to the separating hyperplane.
3.6. scikit-learn: machine learning in Python 371 3.6. scikit-learn: machine learning in Python 372
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
K-means clustering
The simplest clustering algorithm is k-means. This divides a set into k clusters, assigning each observation to a
cluster so as to minimize the distance of that observation (in n-dimensional space) to the clusters mean; the means
are then recomputed. This operation is run iteratively until the clusters converge, for a maximum for max_iter
rounds.
(An alternative implementation of k-means is available in SciPys cluster package. The scikit-learn
implementation differs from that by offering an object API and several additional features, including smart initial-
ization.)
>>> from sklearn import cluster, datasets
>>> iris = datasets.load_iris()
>>> k_means = cluster.KMeans(n_clusters=3)
>>> k_means.fit(iris.data)
KMeans(...)
>>> print(k_means.labels_[::10])
>>> from sklearn import svm
[1 1 1 1 1 0 0 0 0 0 2 2 2 2 2]
>>> svc = svm.SVC(kernel='linear')
>>> print(iris.target[::10])
>>> svc.fit(iris.data, iris.target)
[0 0 0 0 0 1 1 1 1 1 2 2 2 2 2]
SVC(...)
There are several support vector machine implementations in scikit-learn. The most commonly used ones
are svm.SVC, svm.NuSVC and svm.LinearSVC; SVC stands for Support Vector Classifier (there also exist
SVMs for regression, which are called SVR in scikit-learn).
Excercise
Train an svm.SVC on the digits dataset. Leave out the last 10% and test prediction performance on these
observations. Ground truth K-means (3 clusters) K-means (8 clusters)
Using kernels Clustering can be seen as a way of choosing a small number of observations from the information. For
instance, this can be used to posterize an image (conversion of a continuous gradation of tone to several
regions of fewer tones):
Classes are not always separable by a hyperplane, so it would be desirable to have a decision function that is not
linear but that may be for instance polynomial or exponential: >>> from scipy import misc
>>> lena = misc.lena().astype(np.float32)
Linear kernel Polynomial kernel RBF kernel (Radial Basis Func- >>> X = lena.reshape((-1, 1)) # We need an (n_sample, n_feature) array
tion) >>> k_means = cluster.KMeans(n_clusters=5)
>>> k_means.fit(X)
KMeans(...)
>>> values = k_means.cluster_centers_.squeeze()
>>> labels = k_means.labels_
>>> lena_compressed = np.choose(labels, values)
>>> lena_compressed.shape = lena.shape
Exercise
Which of the kernels noted above has a better prediction performance on the digits dataset?
Raw image K-means quantization
Given the iris dataset, if we knew that there were 3 types of iris, but did not have access to their labels, we could
try unsupervised learning: we could cluster the observations into several groups by some criterion.
3.6. scikit-learn: machine learning in Python 373 3.6. scikit-learn: machine learning in Python 374
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
3.6.4 Dimension Reduction with Principal Component Analysis 3.6.5 Putting it all together: face recognition
An example showcasing face recognition using Principal Component Analysis for dimension reduction and Sup-
port Vector Machines for classification.
The cloud of points spanned by the observations above is very flat in one direction, so that one feature can almost
be exactly computed using the 2 other. PCA finds the directions in which the data is not flat and it can reduce the
dimensionality of the data by projecting on a subspace.
Warning: Depending on your version of scikit-learn PCA will be in module decomposition or pca.
# ..
# .. load data ..
lfw_people = datasets.fetch_lfw_people(min_faces_per_person=70, resize=0.4)
perm = np.random.permutation(lfw_people.target.size)
lfw_people.data = lfw_people.data[perm]
lfw_people.target = lfw_people.target[perm]
faces = np.reshape(lfw_people.data, (lfw_people.target.shape[0], -1))
train, test = iter(cross_val.StratifiedKFold(lfw_people.target, k=4)).next()
X_train, X_test = faces[train], faces[test]
y_train, y_test = lfw_people.target[train], lfw_people.target[test]
# ..
# .. dimension reduction ..
PCA is not just useful for visualization of high dimensional datasets. It can also be used as a preprocessing step pca = decomposition.RandomizedPCA(n_components=150, whiten=True)
to help speed up supervised methods that are not efficient with high dimensions. pca.fit(X_train)
X_train_pca = pca.transform(X_train)
X_test_pca = pca.transform(X_test)
3.6. scikit-learn: machine learning in Python 375 3.6. scikit-learn: machine learning in Python 376
Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013)
Grid-search
3.6.6 Linear model: from regression to sparsity
The scikit-learn provides an object that, given data, computes the score during the fit of an estimator on a parameter
Diabetes dataset grid and chooses the parameters to maximize the cross-validation score. This object takes an estimator during the
construction and exposes an estimator API:
The diabetes dataset consists of 10 physiological variables (age, sex, weight, blood pressure) measure on
442 patients, and an indication of disease progression after one year: >>> from sklearn import svm, grid_search
>>> gammas = np.logspace(-6, -1, 10)
>>> diabetes = datasets.load_diabetes() >>> svc = svm.SVC()
>>> diabetes_X_train = diabetes.data[:-20] >>> clf = grid_search.GridSearchCV(estimator=svc, param_grid=dict(gamma=gammas),
>>> diabetes_X_test = diabetes.data[-20:] ... n_jobs=-1)
>>> diabetes_y_train = diabetes.target[:-20] >>> clf.fit(digits.data[:1000], digits.target[:1000])
>>> diabetes_y_test = diabetes.target[-20:] GridSearchCV(cv=None,...)
The task at hand is to predict disease prediction from physiological variables. >>> clf.best_score_
0.9...
>>> clf.best_estimator_.gamma
0.00059948425031894088
Sparse models
By default the GridSearchCV uses a 3-fold cross-validation. However, if it detects that a classifier is passed, rather
than a regressor, it uses a stratified 3-fold.
To improve the conditioning of the problem (uninformative variables, mitigate the curse of dimensionality, as a
feature selection preprocessing, etc.), it would be interesting to select only the informative features and set non-
informative ones to 0. This penalization approach, called Lasso, can set some coefficients to zero. Such methods Cross-validated estimators
are called sparse method, and sparsity can be seen as an application of Occams razor: prefer simpler models to
complex ones.
Cross-validation to set a parameter can be done more efficiently on an algorithm-by-algorithm basis. This is
>>> from sklearn import linear_model why, for certain estimators, the scikit-learn exposes CV estimators, that set their parameter automatically by
>>> regr = linear_model.Lasso(alpha=.3) cross-validation:
>>> regr.fit(diabetes_X_train, diabetes_y_train)
Lasso(...) >>> from sklearn import linear_model, datasets
>>> regr.coef_ # very sparse coefficients >>> lasso = linear_model.LassoCV()
array([ 0. , -0. , 497.34075682, 199.17441034, >>> diabetes = datasets.load_diabetes()
-0. , -0. , -118.89291545, 0. , >>> X_diabetes = diabetes.data
430.9379595 , 0. ]) >>> y_diabetes = diabetes.target
>>> regr.score(diabetes_X_test, diabetes_y_test) >>> lasso.fit(X_diabetes, y_diabetes)
0.5510835453... LassoCV(alphas=None, ...)
>>> # The estimator chose automatically its lambda:
being the score very similar to linear regression (Least Squares): >>> lasso.alpha_
0.012...
>>> lin = linear_model.LinearRegression()
>>> lin.fit(diabetes_X_train, diabetes_y_train) These estimators are called similarly to their counterparts, with CV appended to their name.
LinearRegression(...)
>>> lin.score(diabetes_X_test, diabetes_y_test)
0.5850753022... Exercise
On the diabetes dataset, find the optimal regularization parameter alpha.
3.6. scikit-learn: machine learning in Python 377 3.6. scikit-learn: machine learning in Python 378
Index
D
diff, 321, 323
differentiation, 321
dsolve, 323
E
equations
algebraic, 322
differential, 323
I
integration, 322
M
Matrix, 323
P
Python Enhancement Proposals
PEP 255, 142
PEP 3118, 178
PEP 3129, 152
PEP 318, 145, 152
PEP 342, 142
PEP 343, 152
PEP 380, 144
PEP 380#id13, 144
PEP 8, 147
S
solve, 322
379