PythonScientific Simple PDF
PythonScientific Simple PDF
Release 2013.1
http://scipy-lectures.github.com
4 Matplotlib: plotting 81
4.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 82
4.2 Simple plot . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83
4.3 Figures, Subplots, Axes and Ticks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89
4.4 Other Types of Plots: examples and exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
4.5 Beyond this tutorial . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
4.6 Quick references . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 100
i
5.7 Interpolation: scipy.interpolate . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 117
5.8 Numerical integration: scipy.integrate . . . . . . . . . . . . . . . . . . . . . . . . . . . . 118
5.9 Signal processing: scipy.signal . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 120
5.10 Image processing: scipy.ndimage . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 121
5.11 Summary exercises on scientific computing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 126
14 Traits 268
14.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 269
14.2 Example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 269
ii
14.3 What are Traits . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 270
14.4 References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 285
Index 331
iii
Python Scientific lecture notes, Release 2013.1
Contents 1
Part I
2
CHAPTER 1
1.1.2 Specifications
Rich collection of already existing bricks corresponding to classical numerical methods or basic actions: we
dont want to re-program the plotting of a curve, a Fourier transform or a fitting algorithm. Dont reinvent
the wheel!
Easy to learn: computer science is neither our job nor our education. We want to be able to draw a curve,
smooth a signal, do a Fourier transform in a few minutes.
Easy communication with collaborators, students, customers, to make the code live within a lab or a com-
pany: the code should be as readable as a book. Thus, the language should contain as few syntax symbols or
unneeded routines as possible that would divert the reader from the mathematical or scientific understanding
of the code.
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.
A single environment/language for everything, if possible, to avoid learning a new software for each new
problem.
3
Python Scientific lecture notes, Release 2013.1
Unlike Matlab, Scilab or R, Python does not come with a pre-bundled set of modules for scientific computing.
Below are the basic building blocks that can be combined to obtain a scientific computing environment:
Python, a generic and modern computing language
Python language: data types (string, int), flow control, data collections (lists, dictionaries), pat-
terns, etc.
Modules of the standard library.
A large number of specialized modules or applications written in Python: web protocols, web frame-
work, etc. ... and scientific computing.
Development tools (automatic testing, documentation generation)
Interactive work to test and understand algorithms: In this section, we describe an interactive workflow with
IPython that is handy to explore and understand algorithms.
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
used to write programs, in web servers, or embedded devices.
Start ipython:
In [1]: print(Hello world)
Hello world
In [2]: print?
Type: builtin_function_or_method
Base Class: <type builtin_function_or_method>
String Form: <built-in function print>
Namespace: Python builtin
Docstring:
print(value, ..., sep= , end=\n, file=sys.stdout)
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
The IPython user manual contains a wealth of information about using IPython, but to get you started we want to
give you a quick introduction to three useful features: history, magic functions, aliases and tab completion.
Like a UNIX shell, IPython supports command history. Type up and down to navigate previously typed commands:
In [1]: x = 10
In [2]: <UP>
In [2]: x = 10
IPython supports so called magic functions by prefixing a command with the % character. For example, the run
and whos functions from the previous section are magic functions. Note that, the setting automagic, which is
enabled by default, allows you to omit the preceding % sign. Thus, you can just type the magic function and it will
work.
Other useful magic functions are:
%cd to change the current directory.
In [2]: cd /tmp
/tmp
%timeit allows you to time the execution of short snippets using the timeit module from the standard
library:
In [3]: timeit x = 10
10000000 loops, best of 3: 39 ns per loop
%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]):
In [5]: cpaste
Pasting code; enter -- alone on the line to stop or use Ctrl-D.
:In [3]: timeit x = 10
:--
10000000 loops, best of 3: 85.9 ns per loop
In [6]: cpaste
Pasting code; enter -- alone on the line to stop or use Ctrl-D.
:>>> timeit x = 10
:--
10000000 loops, best of 3: 86 ns per loop
%debug allows you to enter post-mortem debugging. That is to say, if the code you try to execute, raises
an exception, using %debug will enter the debugger at the point where the exception was thrown.
In [7]: x === 10
File "<ipython-input-6-12fd421b5f28>", line 1
x === 10
^
SyntaxError: invalid syntax
In [8]: debug
> /home/esc/anaconda/lib/python2.7/site-packages/IPython/core/compilerop.py(87)ast_parse()
86 and are passed to the built-in compile function."""
---> 87 return compile(source, filename, symbol, self.flags | PyCF_ONLY_AST, 1)
88
ipdb>locals()
{source: ux === 10\n, symbol: exec, self:
<IPython.core.compilerop.CachingCompiler instance at 0x2ad8ef0>,
filename: <ipython-input-6-12fd421b5f28>}
Note: The built-in IPython cheat-sheet is accessible via the %quickref magic function.
Note: A list of all available magic functions is shown when typing %magic.
Furthermore IPython ships with various aliases which emulate common UNIX command line tools such as ls to
list files, cp to copy files and rm to remove files. A list of aliases is shown when typing alias:
In [1]: alias
Total number of aliases: 16
Out[1]:
[(cat, cat),
(clear, clear),
(cp, cp -i),
(ldir, ls -F -o --color %l | grep /$),
(less, less),
(lf, ls -F -o --color %l | grep ^-),
(lk, ls -F -o --color %l | grep ^l),
(ll, ls -F -o --color),
(ls, ls -F --color),
(lx, ls -F -o --color %l | grep ^-..x),
(man, man),
(mkdir, mkdir),
(more, more),
(mv, mv -i),
(rm, rm -i),
(rmdir, rmdir)]
Lastly, we would like to mention the tab completion feature, whose description we cite directly from the IPython
manual:
Tab completion, especially for attributes, is a convenient way to explore the structure of any object youre dealing
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.
In [1]: x = 10
In [2]: x.<TAB>
x.bit_length x.conjugate x.denominator x.imag x.numerator
x.real
In [3]: x.real.
x.real.bit_length x.real.denominator x.real.numerator
x.real.conjugate x.real.imag x.real.real
In [4]: x.real.
Python is a programming language, as are C, Fortran, BASIC, PHP, etc. Some specific features of Python are as
follows:
an interpreted (as opposed to compiled) language. Contrary to e.g. C or Fortran, one does not compile
Python code before executing it. In addition, Python can be used interactively: many Python interpreters
are available, from which commands and scripts can be executed.
a free software released under an open-source license: Python can be used and distributed free of charge,
even for building commercial software.
multi-platform: Python is available for all major operating systems, Windows, Linux/Unix, MacOS X,
most likely your mobile phone OS, etc.
a very readable language with clear non-verbose syntax
a language for which a large variety of high-quality packages are available for various applications, from
web frameworks to scientific computing.
a language very easy to interface with other languages, in particular C and C++.
Some other features of the language are illustrated just below. For example, Python is an object-oriented
language, with dynamic typing (the same variable can contain objects of different types during the course
of a program).
See http://www.python.org/about/ for more information about distinguishing features of Python.
9
Python Scientific lecture notes, Release 2013.1
The message Hello, world! is then displayed. You just executed your first Python instruction, congratulations!
To get yourself started, type the following stack of instructions
>>> a = 3
>>> b = 2*a
>>> type(b)
<type int>
>>> print b
6
>>> a*b
18
>>> b = hello
>>> type(b)
<type str>
>>> b + b
hellohello
>>> 2*b
hellohello
Two variables a and b have been defined above. Note that one does not declare the type of an variable before
assigning its value. In C, conversely, one should write:
int a = 3;
In addition, the type of a variable may change, in the sense that at one point in time it can be equal to a value of
a certain type, and a second point in time, it can be equal to a value of a different type. b was first equal to an
integer, but it became equal to a string when it was assigned the value hello. Operations on integers (b=2*a)
are coded natively in Python, and so are some operations on strings such as additions and multiplications, which
amount respectively to concatenation and repetition.
Floats
>>> c = 2.1
>>> type(c)
<type float>
Complex
>>> a = 1.5 + 0.5j
>>> a.real
1.5
>>> a.imag
0.5
>>> type(1. + 0j )
<type complex>
Booleans
>>> 3 > 4
False
>>> test = (3 > 4)
>>> test
False
>>> type(test)
<type bool>
A Python shell can therefore replace your pocket calculator, with the basic arithmetic operations +, -, *, /, %
(modulo) natively implemented:
>>> 7 * 3.
21.0
>>> 2**10
1024
>>> 8 % 3
2
>>> 3 / 2
1
Trick: use floats:
>>> 3 / 2.
1.5
>>> a = 3
>>> b = 2
>>> a / b
1
>>> a / float(b)
1.5
>>> 3.0 // 2
1.0
Note: The behaviour of the division operator has changed in Python 3. Please look at the python3porting
website for details.
2.2.2 Containers
Python provides many efficient types of containers, in which collections of objects can be stored.
Lists
A list is an ordered collection of objects, that may have different types. For example
>>> L = [red, blue, green, black, white]
>>> type(L)
<type list>
Warning: Note that L[start:stop] contains the elements with indices i such as start<= i < stop
(i ranging from start to stop-1). Therefore, L[start:stop] has (stop-start) elements.
For collections of numerical data that all have the same type, it is often more efficient to use the array type
provided by the numpy module. A NumPy array is a chunk of memory containing fixed-sized items. With
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.
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
Add and remove elements:
>>> L = [red, blue, green, black, white]
>>> L.append(pink)
>>> L
[red, blue, green, black, white, pink]
>>> L.pop() # removes and returns the last item
pink
>>> L
[red, blue, green, black, white]
>>> L.extend([pink, purple]) # extend L, in-place
>>> L
[red, blue, green, black, white, pink, purple]
>>> L = L[:-2]
>>> L
[red, blue, green, black, white]
Reverse:
>>> r = L[::-1]
>>> r
[white, black, green, blue, red]
>>> r2 = list(L)
>>> r2
[red, blue, green, black, white]
>>> r2.reverse() # in-place
>>> r2
[white, black, green, blue, red]
Sort:
>>> sorted(r) # new object
[black, blue, green, red, white]
>>> r
[white, black, green, blue, red]
>>> r.sort() # in-place
>>> r
[black, blue, green, red, white]
Strings
s = """Hi,
whats up?"""
(Remember that negative indices correspond to counting from the right end.)
Slicing:
>>> a = "hello, world!"
>>> a[3:6] # 3rd to 6th (excluded) elements: elements 3, 4, 5
lo,
>>> a[2:10:2] # Syntax: a[start:stop:step]
lo o
>>> a[::3] # every three characters, from beginning to end
hl r!
Accents and special characters can also be handled in Unicode strings (see
http://docs.python.org/tutorial/introduction.html#unicode-strings).
A string is an immutable object and it is not possible to modify its contents. One may however create new strings
from the original one.
In [53]: a = "hello, world!"
In [54]: a[2] = z
---------------------------------------------------------------------------
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: str object does not support item assignment
In [55]: a.replace(l, z, 1)
Out[55]: hezlo, world!
In [56]: a.replace(l, z)
Out[56]: hezzo, worzd!
Strings have many useful methods, such as a.replace as seen above. Remember the a. object-oriented
notation and use tab completion or help(str) to search for new methods.
Note: Python offers advanced possibilities for manipulating strings, looking for patterns or format-
ting. The interested reader is referred to http://docs.python.org/library/stdtypes.html#string-methods and
http://docs.python.org/library/string.html#new-string-formatting
String substitution:
>>> An integer: %i; a float: %f; another string: %s % (1, 0.1, string)
An integer: 1; a float: 0.100000; another string: string
>>> i = 102
>>> filename = processing_of_dataset_%d.txt % i
>>> filename
processing_of_dataset_102.txt
Dictionaries
A dictionary is basically an efficient table that maps keys to values. It is an unordered container:
>>> tel = {emmanuelle: 5752, sebastian: 5578}
>>> tel[francis] = 5915
>>> tel
{sebastian: 5578, francis: 5915, emmanuelle: 5752}
>>> tel[sebastian]
5578
>>> tel.keys()
[sebastian, francis, emmanuelle]
>>> tel.values()
[5578, 5915, 5752]
>>> francis in tel
True
It can be used to conveniently store and retrieve values associated with a name (a string for a date, a name, etc.).
See http://docs.python.org/tutorial/datastructures.html#dictionaries for more information.
A dictionary can have keys (resp. values) with different types:
>>> d = {a:1, b:2, 3:hello}
>>> d
{a: 1, 3: hello, b: 2}
Tuples
Tuples are basically immutable lists. The elements of a tuple are written between parentheses, or just separated
by commas:
>>> t = 12345, 54321, hello!
>>> t[0]
12345
>>> t
(12345, 54321, hello!)
>>> u = (0, 2)
Assignment statements are used to (re)bind names to values and to modify attributes or items of
mutable objects.
In short, it works as follows (simple assignment):
1. an expression on the right hand side is evaluated, the corresponding object is created/obtained
2. a name on the left hand side is assigned, or bound, to the r.h.s. object
Things to note:
a single object can have several names bound to it:
In [1]: a = [1, 2, 3]
In [2]: b = a
In [3]: a
Out[3]: [1, 2, 3]
In [4]: b
Out[4]: [1, 2, 3]
In [5]: a is b
Out[5]: True
In [6]: b[1] = hi!
In [7]: a
Out[7]: [1, hi!, 3]
2.3.1 if/elif/else
>>> if 2**2 == 4:
... print Obvious!
...
Obvious!
Type the following lines in your Python interpreter, and be careful to respect the indentation depth. The Ipython
shell automatically increases the indentation depth after a column : sign; to decrease the indentation depth, go
four spaces to the left with the Backspace key. Press the Enter key twice to leave the logical block.
In [1]: a = 10
In [2]: if a == 1:
...: print(1)
...: elif a == 2:
...: print(2)
...: else:
...: print(A lot)
...:
A lot
Indentation is compulsory in scripts as well. As an exercise, re-type the previous lines with the same indentation
in a script condition.py, and execute the script with run condition.py in Ipython.
2.3.2 for/range
2.3.3 while/break/continue
... if element == 0:
... continue
... print 1. / element
1.0
0.5
0.25
if <OBJECT>
Evaluates to False:
any number equal to zero (0, 0.0, 0+0j)
an empty container (list, tuple, set, dictionary, ...)
False, None
Evaluates to True:
everything else
a == b Tests equality, with logics:
>>> 1 == 1.
True
>>> a = 1
>>> b = 1
>>> a is b
True
You can iterate over any sequence (string, list, keys in a dictionary, lines in a file, ...):
>>> vowels = aeiouy
Few languages (in particular, languages for scientific computing) allow to loop over anything but integers/indices.
With Python it is possible to loop exactly over the objects of interest without bothering with indices you often
dont care about.
Warning: Not safe to modify the sequence you are iterating over.
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:
>>> words = (cool, powerful, readable)
>>> for i in range(0, len(words)):
... print i, words[i]
0 cool
1 powerful
2 readable
Use iteritems:
>>> d = {a: 1, b:1.2, c:1j}
Exercise
Compute the decimals of Pi using the Wallis formula:
Y 4i2
=2
i=1
4i21
In [57]: test()
in test function
In [8]: disk_area(1.5)
Out[8]: 7.0649999999999995
2.4.3 Parameters
In [82]: double_it(3)
Out[82]: 6
In [83]: double_it()
---------------------------------------------------------------------------
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: double_it() takes exactly 1 argument (0 given)
In [85]: double_it()
Out[85]: 4
In [86]: double_it(3)
Out[86]: 6
Warning: Default values are evaluated when the function is defined, not when it is called. This can be
problematic when using mutable types (e.g. dictionary or list) and modifying them in the function body, since
the modifications will be persistent across invocations of the function.
In [124]: bigx = 10
In [128]: double_it()
Out[128]: 20
In [101]: rhyme = one fish, two fish, red fish, blue fish.split()
In [102]: rhyme
Out[102]: [one, fish,, two, fish,, red, fish,, blue, fish]
In [103]: slicer(rhyme)
Out[103]: [one, fish,, two, fish,, red, fish,, blue, fish]
but it is good practice to use the same ordering as the functions definition.
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.
Can you modify the value of a variable inside a function? Most languages (C, Java, ...) distinguish passing
by value and passing by reference. In Python, such a distinction is somewhat artificial, and it is a bit subtle
whether your variables are going to be modified or not. Fortunately, there exist clear rules.
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.
If the value is immutable, the function does not modify the callers variable. If the value is mutable, the function
may modify the callers variable in-place:
>>> def try_to_modify(x, y, z):
... x = 23
... y.append(42)
... z = [99] # new reference
... print(x)
... print(y)
... print(z)
...
>>> a = 77 # immutable variable
>>> b = [99] # mutable variable
>>> c = [28]
>>> try_to_modify(a, b, c)
23
[99, 42]
[99]
>>> print(a)
77
>>> print(b)
[99, 42]
>>> print(c)
[28]
Variables declared outside the function can be referenced within the function:
In [114]: x = 5
In [116]: addx(10)
Out[116]: 15
But these global variables cannot be modified within the function, unless declared global in the function.
This doesnt work:
In [117]: def setx(y):
.....: x = y
.....: print(x is %d % x)
.....:
.....:
In [118]: setx(10)
x is 10
In [120]: x
Out[120]: 5
This works:
In [121]: def setx(y):
.....: global x
.....: x = y
.....: print(x is %d % x)
.....:
.....:
In [122]: setx(10)
x is 10
In [123]: x
Out[123]: 10
2.4.7 Docstrings
Documentation about what the function does and its parameters. General convention:
In [67]: def funcname(params):
....: """Concise one-line sentence describing the function.
....:
....: Extended summary which can contain multiple paragraphs.
....: """
....: # function body
....: pass
....:
In [68]: funcname?
Type: function
Base Class: type function>
String Form: <function funcname at 0xeaa0f0>
Namespace: Interactive
File: <ipython console>
Definition: funcname(params)
Docstring:
Concise one-line sentence describing the function.
2.4.9 Methods
Methods are functions attached to objects. Youve seen these in our examples on lists, dictionaries, strings, etc...
2.4.10 Exercises
Exercise: Quicksort
Implement the quicksort algorithm, as defined by wikipedia:
function quicksort(array) var list less, greater if length(array) < 2
return array
select and remove a pivot value pivot from array for each x in array
if x < pivot + 1 then append x to less else append x to greater
return concatenate(quicksort(less), pivot, quicksort(greater))
For now, we have typed all instructions in the interpreter. For longer sets of instructions we need to change tack
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)).
2.5.1 Scripts
Let us first write a script, that is a file with a sequence of instructions that are executed each time the script is
called.
Instructions may be e.g. copied-and-pasted from the interpreter (but take care to respect indentation rules!). The
extension for Python files is .py. Write or copy-and-paste the following lines in a file called test.py
message = "Hello how are you?"
for word in message.split():
print word
Let us now execute the script interactively, that is inside the Ipython interpreter. This is maybe the most common
use of scripts in scientific computing.
Note: in Ipython, the syntax to execute a script is %run script.py. For example,
In [2]: message
Out[2]: Hello how are you?
The script has been executed. Moreover the variables defined in the script (such as message) are now available
inside the interpeters namespace.
Other interpreters also offer the possibility to execute scripts (e.g., execfile in the plain Python interpreter,
etc.).
It is also possible In order to execute this script as a standalone program, by executing the script inside a shell
terminal (Linux/Mac console or cmd Windows console). For example, if we are in the same directory as the test.py
file, we can execute this in a console:
$ python test.py
Hello
how
are
you?
Note: Dont implement option parsing yourself. Use modules such as optparse or argparse .
In [1]: import os
In [2]: os
Out[2]: <module os from /usr/lib/python2.6/os.pyc>
In [3]: os.listdir(.)
Out[3]:
[conf.py,
basic_types.rst,
control_flow.rst,
functions.rst,
python_language.rst,
reusing.rst,
file_io.rst,
exceptions.rst,
workflow.rst,
index.rst]
And also:
In [4]: from os import listdir
Importing shorthands:
In [5]: import numpy as np
Warning:
from os import *
This is called the star import and please, Use it with caution
Makes the code harder to read and understand: where do symbols come from?
Makes it impossible to guess the functionality by the context and the name (hint: os.name is the name
of the OS), and to profit usefully from tab completion.
Restricts the variable names you can use: os.name might override name, or vise-versa.
Creates possible name clashes between modules.
Makes the code impossible to statically check for undefined symbols.
Modules are thus a good way to organize code in a hierarchical way. Actually, all the scientific computing tools
we are going to use are modules:
>>> import numpy as np # data arrays
>>> np.linspace(0, 10, 6)
array([ 0., 2., 4., 6., 8., 10.])
>>> import scipy # scientific computing
If we want to write larger and better organized programs (compared to simple scripts), where some objects are
defined, (variables, functions, classes) and that we want to reuse several times, we have to create our own modules.
Let us create a module demo contained in the file demo.py:
"A demo module."
def print_b():
"Prints b."
print b
def print_a():
"Prints a."
print a
c = 2
d = 2
In this file, we defined two functions print_a and print_b. Suppose we want to call the print_a function
from the interpreter. We could execute the file as a script, but since we just want to have access to the function
print_a, we are rather going to import it as a module. The syntax is as follows.
In [1]: import demo
In [2]: demo.print_a()
a
In [3]: demo.print_b()
b
Importing the module gives access to its objects, using the module.object syntax. Dont forget to put the
modules name before the objects name, otherwise Python wont recognize the instruction.
Introspection
In [4]: demo?
Type: module
Base Class: <type module>
String Form: <module demo from demo.py>
Namespace: Interactive
File: /home/varoquau/Projects/Python_talks/scipy_2009_tutorial/source/demo.py
Docstring:
A demo module.
In [5]: who
demo
In [6]: whos
Variable Type Data/Info
------------------------------
demo module <module demo from demo.py>
In [7]: dir(demo)
Out[7]:
[__builtins__,
__doc__,
__file__,
__name__,
__package__,
c,
d,
print_a,
print_b]
In [8]: demo.
demo.__builtins__ demo.__init__ demo.__str__
demo.__class__ demo.__name__ demo.__subclasshook__
demo.__delattr__ demo.__new__ demo.c
demo.__dict__ demo.__package__ demo.d
demo.__doc__ demo.__reduce__ demo.print_a
demo.__file__ demo.__reduce_ex__ demo.print_b
demo.__format__ demo.__repr__ demo.py
demo.__getattribute__ demo.__setattr__ demo.pyc
demo.__hash__ demo.__sizeof__
In [10]: whos
Variable Type Data/Info
--------------------------------
demo module <module demo from demo.py>
print_a function <function print_a at 0xb7421534>
print_b function <function print_b at 0xb74214c4>
In [11]: print_a()
a
In [10]: reload(demo)
File demo2.py:
import sys
def print_a():
"Prints a."
print a
print sys.argv
if __name__ == __main__:
print_a()
Importing it:
In [11]: import demo2
b
Running it:
In [13]: %run demo2
b
a
In [2]: sys.path
Out[2]:
[,
/usr/bin,
/usr/local/include/enthought.traits-1.1.0,
/usr/lib/python2.6,
/usr/lib/python2.6/plat-linux2,
/usr/lib/python2.6/lib-tk,
/usr/lib/python2.6/lib-old,
/usr/lib/python2.6/lib-dynload,
/usr/lib/python2.6/dist-packages,
/usr/lib/pymodules/python2.6,
/usr/lib/pymodules/python2.6/gtk-2.0,
/usr/lib/python2.6/dist-packages/wx-2.8-gtk2-unicode,
/usr/local/lib/python2.6/dist-packages,
/usr/lib/python2.6/dist-packages,
/usr/lib/pymodules/python2.6/IPython/Extensions,
u/home/gouillar/.ipython]
modify the environment variable PYTHONPATH to include the directories containing the user-defined mod-
ules. On Linux/Unix, add the following line to a file read by the shell at startup (e.g. /etc/profile, .profile)
export PYTHONPATH=$PYTHONPATH:/home/emma/user_defined_modules
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 directory.
2.5.6 Packages
A directory that contains many modules is called a package. A package is a module with submodules (which can
have submodules themselves, etc.). A special file called __init__.py (which may be empty) tells Python that
the directory is a Python package, from which modules can be imported.
$ ls
cluster/ io/ README.txt@ stsci/
__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@
__init__.py@ maxentropy/ signal/ version.py@
__init__.pyc misc/ sparse/ version.pyc
INSTALL.txt@ ndimage/ spatial/ weave/
integrate/ odr/ special/
interpolate/ optimize/ stats/
$ cd ndimage
$ ls
doccer.py@ fourier.pyc interpolation.py@ morphology.pyc setup.pyc
doccer.pyc info.py@ interpolation.pyc _nd_image.so
setupscons.py@
filters.py@ info.pyc measurements.py@ _ni_support.py@
setupscons.pyc
filters.pyc __init__.py@ measurements.pyc _ni_support.pyc tests/
fourier.py@ __init__.pyc morphology.py@ setup.py@
From Ipython:
In [1]: import scipy
In [2]: scipy.__file__
Out[2]: /usr/lib/python2.6/dist-packages/scipy/__init__.pyc
In [4]: scipy.version.version
Out[4]: 0.7.0
In [17]: morphology.binary_dilation?
Type: function
Base Class: <type function>
String Form: <function binary_dilation at 0x9bedd84>
Namespace: Interactive
File: /usr/lib/python2.6/dist-packages/scipy/ndimage/morphology.py
Definition: morphology.binary_dilation(input, structure=None,
iterations=1, mask=None, output=None, border_value=0, origin=0,
brute_force=False)
Docstring:
Multi-dimensional binary dilation with the given structure.
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.
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 editor to map the Tab key to a
4-space indentation. In Python(x,y), the editor Scite is already configured this way.
Style guidelines
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
>>> long_line = "Here is a very very long line \
... that we break in two parts."
Spaces
Write well-spaced code: put whitespaces after commas, around arithmetic operators, etc.:
>>> a = 1 # yes
>>> a=1 # too cramped
A certain number of rules for writing beautiful code (and more importantly using the same conventions as
anybody else!) are given in the Style Guide for Python Code.
To be exhaustive, here are some information about input and output in Python. Since we will use the Numpy
methods to read and write files, you may skip this chapter at first reading.
We write or read strings to/from files (other types must be converted to strings). To write in a file:
>>> f = open(workfile, w) # opens the workfile file
>>> type(f)
<type file>
>>> f.write(This is a test \nand another test)
>>> f.close()
In [2]: s = f.read()
In [3]: print(s)
This is a test
and another test
In [4]: f.close()
In [6]: f = open(workfile, r)
In [8]: f.close()
File modes
Read-only: r
Write-only: w
Note: Create a new file or overwrite existing file.
Append a file: a
Read and Write: r+
Binary mode: b
Note: Use for binary files, especially on Windows.
Current directory:
In [17]: os.getcwd()
Out[17]: /Users/cburns/src/scipy2009/scipy_2009_tutorial/source
List a directory:
In [31]: os.listdir(os.curdir)
Out[31]:
[.index.rst.swo,
.python_language.rst.swp,
.view_array.py.swp,
_static,
_templates,
basic_types.rst,
conf.py,
control_flow.rst,
debugging.rst,
...
Make a directory:
In [32]: os.mkdir(junkdir)
In [41]: os.rmdir(foodir)
Delete a file:
In [44]: fp = open(junk.txt, w)
In [45]: fp.close()
In [47]: os.remove(junk.txt)
In [71]: fp.close()
In [72]: a = os.path.abspath(junk.txt)
In [73]: a
Out[73]: /Users/cburns/src/scipy2009/scipy_2009_tutorial/source/junk.txt
In [74]: os.path.split(a)
Out[74]: (/Users/cburns/src/scipy2009/scipy_2009_tutorial/source,
junk.txt)
In [78]: os.path.dirname(a)
Out[78]: /Users/cburns/src/scipy2009/scipy_2009_tutorial/source
In [79]: os.path.basename(a)
Out[79]: junk.txt
In [80]: os.path.splitext(os.path.basename(a))
Out[80]: (junk, .txt)
In [84]: os.path.exists(junk.txt)
Out[84]: True
In [86]: os.path.isfile(junk.txt)
Out[86]: True
In [87]: os.path.isdir(junk.txt)
Out[87]: False
In [88]: os.path.expanduser(~/local)
Out[88]: /Users/cburns/local
In [8]: os.system(ls)
basic_types.rst demo.py functions.rst python_language.rst standard_library.rst
control_flow.rst exceptions.rst io.rst python-logo.png
demo2.py first_steps.rst oop.rst reusing_code.rst
A noteworthy alternative to os.system is the sh module. Which provides much more convenient ways to obtain
the output, error stream and exit code of the external command.
In [20]: import sh
In [20]: com = sh.ls()
Walking a directory
Environment variables:
In [9]: import os
In [11]: os.environ.keys()
Out[11]:
[_,
FSLDIR,
TERM_PROGRAM_VERSION,
FSLREMOTECALL,
USER,
HOME,
PATH,
PS1,
SHELL,
EDITOR,
WORKON_HOME,
PYTHONPATH,
...
In [12]: os.environ[PYTHONPATH]
Out[12]: .:/Users/cburns/src/utils:/Users/cburns/src/nitools:
/Users/cburns/local/lib/python2.5/site-packages/:
/usr/local/lib/python2.5/site-packages/:
/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5
In [16]: os.getenv(PYTHONPATH)
Out[16]: .:/Users/cburns/src/utils:/Users/cburns/src/nitools:
/Users/cburns/local/lib/python2.5/site-packages/:
/usr/local/lib/python2.5/site-packages/:
/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5
In [19]: glob.glob(*.txt)
Out[19]: [holy_grail.txt, junk.txt, newfile.txt]
In [118]: sys.version
Out[118]: 2.5.2 (r252:60911, Feb 22 2008, 07:57:53) \n
[GCC 4.0.1 (Apple Computer, Inc. build 5363)]
In [119]: sys.prefix
Out[119]: /Library/Frameworks/Python.framework/Versions/2.5
sys.path is a list of strings that specifies the search path for modules. Initialized from PYTHONPATH:
In [121]: sys.path
Out[121]:
[,
/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,
/Users/cburns/local/lib/python2.5/site-packages/urwid-0.9.7.1-py2.5.egg,
/Users/cburns/local/lib/python2.5/site-packages/yolk-0.4.1-py2.5.egg,
/Users/cburns/local/lib/python2.5/site-packages/virtualenv-1.2-py2.5.egg,
...
In [4]: pickle.load(file(test.pkl))
Out[4]: [1, None, Stan]
Exercise
Write a program to search your PYTHONPATH for the module site.py.
path_site
It is highly unlikely that you havent yet raised Exceptions if you have typed all the previous commands of the
tutorial. For example, you may have raised an exception if you entered a command with a typo.
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.
2.8.1 Exceptions
In [2]: 1 + e
---------------------------------------------------------------------------
TypeError: unsupported operand type(s) for +: int and str
In [4]: d[3]
---------------------------------------------------------------------------
KeyError: 3
In [5]: l = [1, 2, 3]
In [6]: l[4]
---------------------------------------------------------------------------
IndexError: list index out of range
In [7]: l.foobar
---------------------------------------------------------------------------
AttributeError: list object has no attribute foobar
As you can see, there are different types of exceptions for different errors.
try/except
In [9]: x
Out[9]: 1
try/finally
In [10]: try:
....: x = int(raw_input(Please enter a number: ))
....: finally:
....: print(Thank you for your input)
....:
....:
Please enter a number: a
Thank you for your input
---------------------------------------------------------------------------
ValueError: invalid literal for int() with base 10: a
In [14]: print_sorted(132)
132
In [16]: filter_name(Gal)
OK, Gal
Out[16]: Ga\xc3\xabl
In [17]: filter_name(Stfan)
---------------------------------------------------------------------------
UnicodeDecodeError: ascii codec cant decode byte 0xc3 in position 2: ordinal not in range(
In [18]: x = 0
In [20]: x
Out[20]: 0.9990234375
Use exceptions to notify certain conditions are met (e.g. StopIteration) or not (e.g. custom error raising)
In the previous example, the Student class has __init__, set_age and set_major methods. Its at-
tributes are name, age and major. We can call these methods and attributes with the following notation:
classinstance.method or classinstance.attribute. The __init__ constructor is a special
method we call with: MyClass(init parameters if any).
Now, suppose we want to create a new class MasterStudent with the same methods and attributes as the previous
one, but with an additional internship attribute. We wont copy the previous class, but inherit from it:
>>> class MasterStudent(Student):
... internship = mandatory, from March to June
...
>>> james = MasterStudent(james)
>>> james.internship
mandatory, from March to June
>>> james.set_age(23)
>>> james.age
23
The MasterStudent class inherited from the Student attributes and methods.
Thanks to classes and object-oriented programming, we can organize code with different classes corresponding to
different objects we encounter (an Experiment class, an Image class, a Flow class, etc.), with their own methods
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.
authors Emmanuelle Gouillart, Didrik Pinte, Gal Varoquaux, and Pauli Virtanen
This chapter gives an overview of Numpy, the core tool for performant numerical computing with Python.
Section contents
What are Numpy and numpy arrays (page 42)
Reference documentation (page 43)
Creating arrays (page 44)
Basic data types (page 46)
Basic visualization (page 46)
Indexing and slicing (page 49)
Copies and views (page 50)
Adding Axes (page 51)
Fancy indexing (page 52)
42
Python Scientific lecture notes, Release 2013.1
For example:
An array containing:
values of an experiment/simulation at discrete time steps
signal recorded by a measurement device, e.g. sound wave
pixels of an image, grey-level or colour
3-D data measured at different X-Y-Z positions, e.g. MRI scan
...
In [3]: a = np.arange(1000)
array(...)
array(object, dtype=None, copy=True, order=None, subok=False, ...
...
In [5]: np.array?
String Form:<built-in function array>
Docstring:
array(object, dtype=None, copy=True, order=None, subok=False, ndmin=0, ...
...
In [6]: np.con* ?
np.concatenate
np.conj
np.conjugate
np.convolve
1-D:
>>> a = np.array([0, 1, 2, 3])
>>> a
array([0, 1, 2, 3])
>>> a.ndim
1
>>> a.shape
(4,)
>>> len(a)
4
[[3],
[4]]])
>>> c.shape
(2, 2, 1)
or by number of points:
>>> c = np.linspace(0, 1, 6) # start, end, num-points
>>> c
array([ 0. , 0.2, 0.4, 0.6, 0.8, 1. ])
>>> d = np.linspace(0, 1, 5, endpoint=False)
>>> d
array([ 0. , 0.2, 0.4, 0.6, 0.8])
Common arrays:
You may have noticed that, in some instances, array elements are displayed with a trailing dot (e.g. 2. vs 2). This
is due to a difference in the data-type used:
>>> a = np.array([1, 2, 3])
>>> a.dtype
dtype(int64)
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.
Bool
>>> e = np.array([True, False, False, True])
>>> e.dtype
dtype(bool)
Strings
>>> f = np.array([Bonjour, Hello, Hallo,])
>>> f.dtype # <--- strings containing max. 7 letters
dtype(S7)
Now that we have our first data arrays, we are going to visualize them.
Start by launching IPython in pylab mode
$ ipython --pylab
1D plotting:
9
8
7
6
5
4
3
2
1
00.0 0.5 1.0 1.5 2.0 2.5 3.0
2D arrays (such as images):
>>> image = np.random.rand(30, 30)
>>> plt.imshow(image, cmap=plt.cm.gray)
<matplotlib.image.AxesImage object at ...>
>>> plt.colorbar()
<matplotlib.colorbar.Colorbar instance at ...>
>>> plt.show()
1.0
0
0.9
5 0.8
0.7
10
0.6
15 0.5
0.4
20 0.3
25 0.2
0.1
0 5 10 15 20 25
See Also:
More in the matplotlib chapter
3D plotting
For 3D visualization, we can use another package: Mayavi. A quick example: start by relaunching iPython
with these options: ipython pylab=wx (or ipython -pylab -wthread in IPython < 0.10).
The mayavi/mlab window that opens is interactive: by clicking on the left mouse button you can rotate the
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.
Note that:
In 2D, the first dimension corresponds to rows, the second to columns.
for multidimensional a, a[0] is interpreted by taking all elements in the unspecified dimensions.
Slicing Arrays, like other Python sequences can also be sliced:
>>> a = np.arange(10)
>>> a
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> a[2:9:3] # [start:end:step]
array([2, 5, 8])
All three slice components are not required: by default, start is 0, end is the last and step is 1:
>>> a[1:3]
array([1, 2])
>>> a[::2]
array([0, 2, 4, 6, 8])
>>> a[3:]
array([3, 4, 5, 6, 7, 8, 9])
A slicing operation creates a view on the original array, which is just a way of accessing array data. Thus the
original array is not copied in memory.
When modifying the view, the original array is modified as well:
>>> a = np.arange(10)
>>> a
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> b = a[::2]; b
array([0, 2, 4, 6, 8])
>>> b[0] = 12
>>> b
array([12, 2, 4, 6, 8])
>>> a # (!)
array([12, 1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> a = np.arange(10)
>>> b = a[::2].copy() # force a copy
>>> b[0] = 12
>>> a
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
This behavior can be surprising at first sight... but it allows to save both memory and time.
>>> z[np.newaxis, :]
array([[1, 2, 3]])
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)
>>> extract_from_a = a[mask] # or, a[a%3==0]
>>> extract_from_a # extract a sub-array with the mask
array([ 3, 0, 9, 6, 0, 12])
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])
>>> a = np.arange(10)
>>> a
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
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([2, 3, 2, 4, 2])
When a new array is created by indexing with an array of integers, the new array has the same shape than the array
of integers:
>>> a = np.arange(10)
>>> idx = np.array([[3, 4], [9, 7]])
>>> a[idx]
array([[3, 4],
[9, 7]])
>>> b = np.arange(10)
We can even use fancy indexing and broadcasting (page 59) at the same time:
>>> a = np.arange(12).reshape(3,4)
>>> a
array([[ 0, 1, 2, 3],
[ 4, 5, 6, 7],
[ 8, 9, 10, 11]])
>>> i = np.array([[0, 1], [1, 2]])
>>> a[i, 2] # same as a[i, 2*np.ones((2, 2), dtype=int)]
array([[ 2, 6],
[ 6, 10]])
Section contents
Elementwise operations (page 53)
Basic reductions (page 55)
Broadcasting (page 59)
Array shape manipulation (page 62)
Sorting data (page 65)
Some exercises (page 66)
Summary (page 72)
With scalars:
>>> j = np.arange(5)
>>> 2**(j + 1) - j
array([ 2, 3, 6, 13, 28])
Comparisons:
>>> a = np.array([1, 2, 3, 4])
>>> b = np.array([4, 2, 2, 4])
>>> a == b
array([False, True, False, True], dtype=bool)
>>> a > b
array([False, False, True, False], dtype=bool)
Logical operations:
>>> a = np.array([1, 1, 0, 0], dtype=bool)
>>> b = np.array([1, 0, 1, 0], dtype=bool)
>>> np.logical_or(a, b)
array([ True, True, True, False], dtype=bool)
>>> np.logical_and(a, b)
array([ True, False, False, False], dtype=bool)
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)
Exercise
Generate arrays [2**0, 2**1, 2**2, 2**3, 2**4] and a_j = 2^(3*j) - j
Computing sums:
>>> x = np.array([1, 2, 3, 4])
>>> np.sum(x)
10
>>> x.sum()
10
Extrema:
>>> x = np.array([1, 3, 2])
>>> x.min()
1
>>> x.max()
3
Logical operations:
>>> np.all([True, True, False])
False
>>> np.any([True, True, False])
True
80000
70000
60000
Hare
50000 Lynx
40000
Carrot
30000
20000
10000
0
1900 1905 1910 1915 1920
The mean populations over time:
>>> populations = data[:, 1:]
>>> populations.mean(axis=0)
array([ 34080.95238095, 20166.66666667, 42400. ])
The sample standard deviations:
>>> populations.std(axis=0)
array([ 20897.90645809, 16254.59153691, 3322.50622558])
Which species has the highest population each year?:
>>> np.argmax(populations, axis=1)
array([2, 2, 0, 0, 1, 1, 2, 2, 2, 2, 2, 2, 0, 0, 0, 1, 2, 2, 2, 2, 2])
What is the typical distance from the origin of a random walker after t left or right jumps?
16
14
12
10
(x)2
8
6
q
4
2
00 50 100 150 200
3.2. Numerical operations on arrays 58
t
Python Scientific lecture notes, Release 2013.1
3.2.3 Broadcasting
Lets verify:
>>> a = np.tile(np.arange(0, 40, 10), (3, 1)).T
>>> a
array([[ 0, 0, 0],
[10, 10, 10],
[20, 20, 20],
[30, 30, 30]])
>>> b = np.array([0, 1, 2])
>>> a + b
array([[ 0, 1, 2],
[10, 11, 12],
[20, 21, 22],
[30, 31, 32]])
An useful trick:
>>> a = np.arange(0, 40, 10)
>>> a.shape
(4,)
>>> a = a[:, np.newaxis] # adds a new axis -> 2D array
>>> a.shape
(4, 1)
>>> a
array([[ 0],
[10],
[20],
[30]])
>>> a + b
array([[ 0, 1, 2],
[10, 11, 12],
[20, 21, 22],
[30, 31, 32]])
Broadcasting seems a bit magical, but it is actually quite natural to use it when we want to solve a problem whose
output data is an array with more dimensions than input data.
Example
Lets construct an array of distances (in miles) between cities of Route 66: Chicago, Springfield, Saint-Louis,
Tulsa, Oklahoma City, Amarillo, Santa Fe, Albuquerque, Flagstaff and Los Angeles.
>>> mileposts = np.array([0, 198, 303, 736, 871, 1175, 1475, 1544,
... 1913, 2448])
>>> distance_array = np.abs(mileposts - mileposts[:, np.newaxis])
>>> distance_array
array([[ 0, 198, 303, 736, 871, 1175, 1475, 1544, 1913, 2448],
[ 198, 0, 105, 538, 673, 977, 1277, 1346, 1715, 2250],
[ 303, 105, 0, 433, 568, 872, 1172, 1241, 1610, 2145],
[ 736, 538, 433, 0, 135, 439, 739, 808, 1177, 1712],
[ 871, 673, 568, 135, 0, 304, 604, 673, 1042, 1577],
[1175, 977, 872, 439, 304, 0, 300, 369, 738, 1273],
[1475, 1277, 1172, 739, 604, 300, 0, 69, 438, 973],
[1544, 1346, 1241, 808, 673, 369, 69, 0, 369, 904],
[1913, 1715, 1610, 1177, 1042, 738, 438, 369, 0, 535],
[2448, 2250, 2145, 1712, 1577, 1273, 973, 904, 535, 0]])
A lot of grid-based or network-based problems can also use broadcasting. For instance, if we want to compute the
distance from the origin of points on a 10x10 grid, we can do
>>> x, y = np.arange(5), np.arange(5)
>>> distance = np.sqrt(x ** 2 + y[:, np.newaxis] ** 2)
>>> distance
array([[ 0. , 1. , 2. , 3. , 4. ],
[ 1. , 1.41421356, 2.23606798, 3.16227766, 4.12310563],
[ 2. , 2.23606798, 2.82842712, 3.60555128, 4.47213595],
[ 3. , 3.16227766, 3.60555128, 4.24264069, 5. ],
[ 4. , 4.12310563, 4.47213595, 5. , 5.65685425]])
Or in color:
>>> plt.pcolor(distance)
<matplotlib.collections.PolyCollection object at ...>
>>> plt.colorbar()
<matplotlib.colorbar.Colorbar instance at ...>
>>> plt.axis(equal)
(0.0, 200.0, 0.0, 16.0)
5 5.4
4.8
4
4.2
3.6
3
3.0
2 2.4
1.8
1 1.2
0.6
0 0.0
0 1 2 3 4 5
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)
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 broadcasting:
>>> x, y = np.mgrid[0:4, 0:4]
>>> x
array([[0, 0, 0, 0],
[1, 1, 1, 1],
[2, 2, 2, 2],
[3, 3, 3, 3]])
>>> y
array([[0, 1, 2, 3],
[0, 1, 2, 3],
[0, 1, 2, 3],
[0, 1, 2, 3]])
Flattening
Reshaping
Or,
>>> b = a.reshape((6, -1)) # unspecified (-1) value is inferred
Dimension shuffling
>>> a = np.arange(4*3*2).reshape(4, 3, 2)
>>> a.shape
(4, 3, 2)
>>> a[0, 2, 1]
5
>>> b = a.transpose(1, 2, 0)
>>> b.shape
(3, 2, 4)
>>> b[2, 1, 0]
5
Resizing
def some_function(input):
"""
Call a Fortran routine, and preserve input shape
"""
input = np.asarray(input)
# fortran_module.some_function() takes 1-D arrays!
output = fortran_module.some_function(input.ravel())
return output.reshape(input.shape)
# ->
# [ 2. 3. 4.]
# [[ 2. 3.]
# [ 4. 5.]]
1 2
= 1 , 1 = 2 =
2 1 2
In short: for block matrices and vectors, it can be useful to preserve the block structure.
In Numpy:
>>> psi = np.zeros((2, 2)) # dimensions: level, spin
>>> psi[0, 1] # <-- psi_{1,downarrow}
0.0
Linear operators on such block vectors have similar block structure:
H = h11 V , 11 = 1,
h
0
, ...
V h 22 0 1,
In-place sort:
>>> a.sort(axis=1)
>>> a
array([[3, 4, 5],
[1, 1, 2]])
>>> a[j]
array([1, 2, 3, 4])
80000
70000
60000
Hare
50000 Lynx
40000
Carrot
30000
20000
10000
0
1900 1905 1910 1915 1920
Computes and print, based on the data in populations.txt...
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.
3. Which species has the largest population for each year. (Hint: argsort & fancy indexing of
np.array([H, L, C]))
4. Which years any of the populations is above 50000. (Hint: comparisons and np.any)
5. The top 2 years for each species when they had the lowest populations. (Hint: argsort, fancy
indexing)
6. Compare (plot) the change in hare population (see help(np.gradient)) and the number of
lynxes. Check correlation (see help(np.corrcoef)).
... all without for-loops.
over this volume with the mean. The exact result is: ln 2 12 0.1931 . . . what is your relative error?
(Hints: use elementwise operations and broadcasting. You can make np.ogrid give a number of points in
given range with np.ogrid[0:1:20j].)
Reminder Python functions:
def f(a, b, c):
return some_result
1.5
1.0
0.5
0.0
0.5
1.0
c = x + 1j*y
for j in xrange(N_max):
z = z**2 + c
Point (x, y) belongs to the Mandelbrot set if |c| < some_threshold.
Do this computation by:
1. Construct a grid of c = x + 1j*y values in range [-2, 1] x [-1.5, 1.5]
2. Do the iteration
3. Form the 2-d boolean mask indicating which points are in the set
4. Save the result to an image with:
>>> import matplotlib.pyplot as plt
>>> plt.imshow(mask.T, extent=[-2, 1, -1.5, 1.5])
<matplotlib.image.AxesImage object at ...>
>>> plt.gray()
>>> plt.savefig(mandelbrot.png)
3.2.7 Summary
Know miscellaneous operations on arrays, such as finding the mean or max (array.max(),
array.mean()). No need to retain everything, but have the reflex to search in the documentation (online
docs, help(), lookfor())!!
For advanced use: master the indexing with arrays of integers, as well as broadcasting. Know more Numpy
functions to handle various array operations.
Section contents
More data types (page 73)
Structured data types (page 74)
maskedarray: dealing with (propagation of) missing data (page 75)
Casting
Forced casts:
>>> a = np.array([1.7, 1.2, 1.6])
>>> b = a.astype(int) # <-- truncates to integer
>>> b
array([1, 1, 1])
Rounding:
>>> a = np.array([1.2, 1.5, 1.6, 2.5, 3.5, 4.5])
>>> b = np.around(a)
>>> b # still floating-point
array([ 1., 2., 2., 2., 4., 4.])
>>> c = np.around(a).astype(int)
>>> c
array([1, 2, 2, 2, 4, 4])
Integers (signed):
int8 8 bits
int16 16 bits
int32 32 bits (same as int on 32-bit platform)
int64 64 bits (same as int on 64-bit platform)
>>> np.array([1], dtype=int).dtype
dtype(int64)
>>> np.iinfo(np.int32).max, 2**31 - 1
(2147483647, 2147483647)
>>> np.iinfo(np.int64).max, 2**63 - 1
(9223372036854775807, 9223372036854775807L)
Unsigned integers:
uint8 8 bits
uint16 16 bits
uint32 32 bits
uint64 64 bits
>>> np.iinfo(np.uint32).max, 2**32 - 1
(4294967295, 4294967295)
>>> np.iinfo(np.uint64).max, 2**64 - 1
(18446744073709551615L, 18446744073709551615L)
Floating-point numbers:
float16 16 bits
float32 32 bits
float64 64 bits (same as float)
float96 96 bits, platform-dependent (same as np.longdouble)
float128 128 bits, platform-dependent (same as np.longdouble)
>>> np.finfo(np.float32).eps
1.1920929e-07
>>> np.finfo(np.float64).eps
2.2204460492503131e-16
Note: There are a bunch of other syntaxes for constructing structured arrays, see here and here.
For floats one could use NaNs, but masks work for all types:
>>> x = np.ma.array([1, 2, 3, 4], mask=[0, 1, 0, 1])
>>> x
masked_array(data = [1 -- 3 --],
mask = [False True False True],
fill_value = 999999)
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:
Good practices
Explicit variable names (no need of a comment to explain what is in the variable)
Style: spaces after commas, around =, etc.
A certain number of rules for writing beautiful code (and, more importantly, using the same conven-
tions as everybody else!) are given in the Style Guide for Python Code and the Docstring Conventions
page (to manage help strings).
Except some rare cases, variable names and comments in English.
Section contents
Polynomials (page 76)
Loading data files (page 78)
3.4.1 Polynomials
1.3
1.2
1.1
1.0
0.9
0.8
0.7
0.6
0.50.0 0.2 0.4 0.6 0.8 1.0
See http://docs.scipy.org/doc/numpy/reference/routines.polynomials.poly1d.html for more.
Numpy also has a more sophisticated polynomial interface, which supports e.g. the Chebyshev basis.
3x2 + 2x 1:
>>> p = np.polynomial.Polynomial([-1, 2, 3]) # coefs in different order!
>>> p(0)
-1.0
>>> p.roots()
array([-1. , 0.33333333])
>>> p.degree() # In general polynomials do not always expose order
2
Example using polynomials in Chebyshev basis, for polynomials in range [-1, 1]:
>>> x = np.linspace(-1, 1, 2000)
>>> y = np.cos(x) + 0.3*np.random.rand(2000)
>>> p = np.polynomial.Chebyshev.fit(x, y, 90)
1.3
1.2
1.1
1.0
0.9
0.8
0.7
0.6
0.51.0 0.5 0.0 0.5 1.0
The Chebyshev polynomials have some advantages in interpolation.
Text files
Example: populations.txt:
# year hare lynx carrot
1900 30e3 4e3 48300
1901 47.2e3 6.1e3 48200
1902 70.2e3 9.8e3 41500
1903 77.4e3 35.2e3 38200
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)
Images
Using Matplotlib:
>>> img = plt.imread(data/elephant.png)
>>> img.shape, img.dtype
((200, 300, 3), dtype(float32))
>>> plt.imshow(img)
<matplotlib.image.AxesImage object at ...>
>>> plt.savefig(plot.png)
Other libraries:
>>> from scipy.misc import imsave
>>> imsave(tiny_elephant.png, img[::6,::6])
>>> plt.imshow(plt.imread(tiny_elephant.png), interpolation=nearest)
<matplotlib.image.AxesImage object at ...>
0
5
10
15
20
25
30
0 10 20 30 40
Numpy has its own binary format, not portable but with efficient I/O:
>>> data = np.ones((3, 3))
>>> np.save(pop.npy, data)
>>> data3 = np.load(pop.npy)
Numpy internals
If you are interested in the Numpy internals, there is a good discussion in Advanced Numpy (page 160).
Matplotlib: plotting
Thanks
Many thanks to Bill Wing and Christoph Deil for review and corrections.
81
Python Scientific lecture notes, Release 2013.1
Chapters contents
Introduction (page 82)
IPython and the pylab mode (page 83)
pylab (page 83)
Simple plot (page 83)
Using defaults (page 84)
Instantiating defaults (page 84)
Changing colors and line widths (page 85)
Setting limits (page 86)
Setting ticks (page 86)
Setting tick labels (page 87)
Moving spines (page 87)
Adding a legend (page 88)
Annotate some points (page 88)
Devil is in the details (page 89)
Figures, Subplots, Axes and Ticks (page 89)
Figures (page 90)
Subplots (page 90)
Axes (page 90)
Ticks (page 91)
Other Types of Plots: examples and exercises (page 91)
Regular Plots (page 93)
Scatter Plots (page 93)
Bar Plots (page 94)
Contour Plots (page 94)
Imshow (page 95)
Pie Charts (page 95)
Quiver Plots (page 96)
Grids (page 96)
Multi Plots (page 96)
Polar Axis (page 97)
3D Plots (page 97)
Text (page 98)
Beyond this tutorial (page 98)
Tutorials (page 98)
Matplotlib documentation (page 99)
Code documentation (page 99)
Galleries (page 100)
Mailing lists (page 100)
Quick references (page 100)
Line properties (page 101)
Line styles (page 102)
Markers (page 102)
Colormaps (page 102)
4.1 Introduction
Matplotlib is probably the single most used Python package for 2D-graphics. It provides both a very quick 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.
4.1. Introduction 82
Python Scientific lecture notes, Release 2013.1
IPython is an enhanced interactive Python shell that has lots of interesting features including named inputs and
outputs, access to shell commands, improved debugging and many more. When we start it with the command
line argument -pylab (--pylab since IPython version 0.12), it allows interactive matplotlib sessions that have
Matlab/Mathematica-like functionality.
4.1.2 pylab
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 arguments.
Important commands are explained with interactive examples.
In this section, we want to draw the cosine and sine functions on the same plot. Starting from the default settings,
well enrich the figure step by step to make it nicer.
First step is to get the data for the sine and cosine functions:
import numpy as np
X is now a numpy array with 256 values ranging from - to + (included). C is the cosine (256 values) and S is
the sine (256 values).
To run the example, you can type them in an IPython interactive session:
$ ipython --pylab
or you can download each of the examples and run it using regular python:
$ python exercice_1.py
You can get source for each step by clicking on the corresponding figure.
Hint: Documentation
plot tutorial
plot() command
Matplotlib comes with a set of default settings that allow customizing all kinds of properties. You can control the
defaults of almost every property in matplotlib: figure size and dpi, line width, color and style, axes, axis and grid
properties, text and font properties and so on.
import pylab as pl
import numpy as np
pl.plot(X, C)
pl.plot(X, S)
pl.show()
Hint: Documentation
Customizing matplotlib
In the script below, weve instantiated (and commented) all the figure settings that influence the appearance of
the plot. 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).
import pylab as pl
import numpy as np
# Set x limits
pl.xlim(-4.0, 4.0)
# Set x ticks
pl.xticks(np.linspace(-4, 4, 9, endpoint=True))
# Set y limits
pl.ylim(-1.0, 1.0)
# Set y ticks
pl.yticks(np.linspace(-1, 1, 5, endpoint=True))
Hint: Documentation
Controlling line properties
Line API
First step, we want to have the cosine in blue and the sine in red and a slighty thicker line for both of them. Well
also slightly alter the figure size to make it more horizontal.
...
pl.figure(figsize=(10, 6), dpi=80)
pl.plot(X, C, color="blue", linewidth=2.5, linestyle="-")
pl.plot(X, S, color="red", linewidth=2.5, linestyle="-")
...
Hint: Documentation
xlim() command
ylim() command
Current limits of the figure are a bit too tight and we want to make some space in order to clearly see all data
points.
...
pl.xlim(X.min() * 1.1, X.max() * 1.1)
pl.ylim(C.min() * 1.1, C.max() * 1.1)
...
Hint: Documentation
xticks() command
yticks() command
Tick container
Tick locating and formatting
Current ticks are not ideal because they do not show the interesting values (+/-,+/-/2) for sine and cosine. Well
change them such that they show only these values.
...
pl.xticks([-np.pi, -np.pi/2, 0, np.pi/2, np.pi])
pl.yticks([-1, 0, +1])
...
Hint: Documentation
Working with text
xticks() command
yticks() command
set_xticklabels()
set_yticklabels()
Ticks are now properly placed but their label is not very explicit. We could guess that 3.142 is but it would
be better to make it explicit. When we set tick values, we can also provide a corresponding label in the second
argument list. Note that well use latex to allow for nice rendering of the label.
...
pl.xticks([-np.pi, -np.pi/2, 0, np.pi/2, np.pi],
[r$-\pi$, r$-\pi/2$, r$0$, r$+\pi/2$, r$+\pi$])
pl.yticks([-1, 0, +1],
[r$-1$, r$0$, r$+1$])
...
Hint: Documentation
Spines
Axis container
Transformations tutorial
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 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.
...
ax = pl.gca() # gca stands for get current axis
ax.spines[right].set_color(none)
ax.spines[top].set_color(none)
ax.xaxis.set_ticks_position(bottom)
ax.spines[bottom].set_position((data,0))
ax.yaxis.set_ticks_position(left)
ax.spines[left].set_position((data,0))
...
Hint: Documentation
Legend guide
legend() command
Legend API
Lets add a legend in the upper left corner. This only requires adding the keyword argument label (that will 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")
pl.legend(loc=upper left)
...
Hint: Documentation
Annotating axis
annotate() command
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. Then,
well use the annotate command to display some text with an arrow.
...
t = 2 * np.pi / 3
pl.plot([t, t], [0, np.cos(t)], color=blue, linewidth=2.5, linestyle="--")
pl.scatter([t, ], [np.cos(t), ], 50, color=blue)
pl.annotate(r$sin(\frac{2\pi}{3})=\frac{\sqrt{3}}{2}$,
xy=(t, np.sin(t)), xycoords=data,
xytext=(+10, +30), textcoords=offset points, fontsize=16,
arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=.2"))
pl.annotate(r$cos(\frac{2\pi}{3})=-\frac{1}{2}$,
xy=(t, np.cos(t)), xycoords=data,
xytext=(-90, -50), textcoords=offset points, fontsize=16,
arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=.2"))
...
Hint: Documentation
Artists
BBox
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)
label.set_bbox(dict(facecolor=white, edgecolor=None, alpha=0.65))
...
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. A figure in matplotlib means the whole window in the user
interface. Within this figure there can be subplots. 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 current
axes and gca in turn calls gcf() to get the current figure. If there is none it calls figure() to make one, strictly
speaking, to make a subplot(111). Lets look at the details.
4.3.1 Figures
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 that
determine what the figure looks like:
Argument Default Description
num 1 number of figure
figsize figure.figsize figure size in in inches (width, height)
dpi figure.dpi resolution in dots per inch
facecolor figure.facecolor color of the drawing background
edgecolor figure.edgecolor color of edge around the drawing background
frameon True draw figure frame or not
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.
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).
As with other objects, you can set figure properties also setp or with the set_something methods.
4.3.2 Subplots
With subplot you can arrange plots in a regular grid. You need to specify the number of rows and
columns and the number of the plot. Note that the gridspec command is a more powerful alternative.
4.3.3 Axes
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.
4.3.4 Ticks
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
Tick locators control the positions of the ticks. They are set as follows:
ax = pl.gca()
ax.xaxis.set_major_locator(eval(locator))
(page 93)
Starting from the code below, try to reproduce the graphic on the right taking care of filled areas:
n = 256
X = np.linspace(-np.pi, np.pi, n, endpoint=True)
Y = np.sin(2 * X)
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)
Y = np.random.normal(0,1,n)
pl.scatter(X,Y)
Starting from the code below, try to reproduce the graphic on the right by adding labels for red bars.
n = 12
X = np.arange(n)
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.ylim(-1.25, +1.25)
Starting from the code below, try to reproduce the graphic on the right taking care of the colormap (see Colormaps
(page 102) below).
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)
4.4.5 Imshow
Hint: You need to take care of the origin of the image in the imshow command and use a colorbar
Starting from the code below, try to reproduce the graphic on the right taking care of colormap, image interpolation
and origin.
def f(x, y):
return (1 - x / 2 + x ** 5 + y ** 3) * np.exp(-x ** 2 - y ** 2)
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))
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)
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]
pl.quiver(X, Y)
4.4.8 Grids
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([])
Starting from the code below, try to reproduce the graphic on the right.
pl.subplot(2, 2, 1)
pl.subplot(2, 2, 3)
pl.subplot(2, 2, 4)
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)
radii = 10 * np.random.rand(N)
width = np.pi / 4 * np.random.rand(N)
bars = pl.bar(theta, radii, width=width, bottom=0.0)
4.4.11 3D Plots
Starting from the code below, try to reproduce the graphic on the right.
from mpl_toolkits.mplot3d import Axes3D
fig = pl.figure()
ax = Axes3D(fig)
X = np.arange(-4, 4, 0.25)
Y = np.arange(-4, 4, 0.25)
X, Y = np.meshgrid(X, Y)
R = np.sqrt(X**2 + Y**2)
Z = np.sin(R)
4.4.12 Text
Matplotlib benefits from extensive documentation as well as a large community of users and developpers. Here
are some links of interest:
4.5.1 Tutorials
Pyplot tutorial
Introduction
Controlling line properties
Working with multiple figures and axes
Working with text
Image tutorial
Startup commands
Importing image data into Numpy arrays
Plotting numpy arrays as images
Text tutorial
Text introduction
Basic text commands
Text properties and layout
Writing mathematical expressions
Text rendering With LaTeX
Annotating text
Artist tutorial
Introduction
Customizing your objects
Object containers
Figure container
Axes container
Axis containers
Tick containers
Path tutorial
Introduction
Bzier example
Compound paths
Transforms tutorial
Introduction
Data coordinates
Axes coordinates
Blended transformations
Using offset transforms to create a shadow effect
The transformation pipeline
User guide
FAQ
Installation
Usage
How-To
Troubleshooting
Environment Variables
Screenshots
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
argument, allowing for multiple *x*, *y* pairs with an
optional format string. For example, each of the following is
legal::
4.5.4 Galleries
The matplotlib gallery is also incredibly useful when you search how to render a given graphic. Each example
comes with its source.
A smaller gallery is also available here.
Finally, there is a user mailing list where you can ask for help and a developers mailing list that is more technical.
4.6.3 Markers
4.6.4 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.
authors Adrien Chauve, Andre Espaze, Emmanuelle Gouillart, Gal Varoquaux, Ralf Gommers
Scipy
The scipy package contains various toolboxes dedicated to common issues in scientific computing. Its
different submodules correspond to different applications, such as interpolation, integration, optimization,
image processing, statistics, special functions, etc.
scipy can be compared to other standard scientific-computing libraries, such as the GSL (GNU Scientific
Library for C and C++), or Matlabs toolboxes. scipy is the core package for scientific routines in Python;
it is meant to operate efficiently on numpy arrays, so that numpy and scipy work hand in hand.
Before implementing a routine, it is worth checking if the desired data processing is not already imple-
mented in Scipy. As non-professional programmers, scientists often tend to re-invent the wheel, which
leads to buggy, non-optimal, difficult-to-share and unmaintainable code. By contrast, Scipys routines are
optimized and tested, and should therefore be used when possible.
Chapters contents
File input/output: scipy.io (page 105)
Special functions: scipy.special (page 105)
Linear algebra operations: scipy.linalg (page 106)
Fast Fourier transforms: scipy.fftpack (page 107)
Optimization and fit: scipy.optimize (page 111)
Statistics and random numbers: scipy.stats (page 115)
Interpolation: scipy.interpolate (page 117)
Numerical integration: scipy.integrate (page 118)
Signal processing: scipy.signal (page 120)
Image processing: scipy.ndimage (page 121)
Summary exercises on scientific computing (page 126)
Warning: This tutorial is far from an introduction to numerical computing. As enumerating the different
submodules and functions in scipy would be very boring, we concentrate instead on a few examples to give a
general idea of how to use scipy for scientific computing.
104
Python Scientific lecture notes, Release 2013.1
The main scipy namespace mostly contains functions that are really numpy functions (try scipy.cos is
np.cos). Those are exposed for historical reasons only; theres usually no reason to use import scipy in
your code.
Reading images:
>>> from scipy import misc
>>> misc.imread(fname.png)
>>> # Matplotlib also has a similar function
>>> import matplotlib.pyplot as plt
>>> plt.imread(fname.png)
See also:
Load text files: numpy.loadtxt()/numpy.savetxt()
Clever loading of text/csv files: numpy.genfromtxt()/numpy.recfromcsv()
Fast and efficient, but numpy-specific, binary format: numpy.save()/numpy.load()
Special functions are transcendental functions. The docstring of the scipy.special module is well-written,
so we wont list all functions here. Frequently used ones are:
The scipy.linalg module provides standard linear algebra operations, relying on an underlying efficient
implementation (BLAS, LAPACK).
The scipy.linalg.det() function computes the determinant of a square matrix:
>>> from scipy import linalg
>>> arr = np.array([[1, 2],
... [3, 4]])
>>> linalg.det(arr)
-2.0
>>> arr = np.array([[3, 2],
... [6, 4]])
>>> linalg.det(arr)
0.0
>>> linalg.det(np.ones((3, 4)))
Traceback (most recent call last):
...
ValueError: expected square matrix
Finally computing the inverse of a singular matrix (its determinant is zero) will raise LinAlgError:
>>> arr = np.array([[3, 2],
... [6, 4]])
>>> linalg.inv(arr)
Traceback (most recent call last):
...
LinAlgError: singular matrix
More advanced operations are available, for example singular-value decomposition (SVD):
>>> arr = np.arange(9).reshape((3, 3)) + np.diag([1, 0, 1])
>>> uarr, spec, vharr = linalg.svd(arr)
The original matrix can be re-composed by matrix multiplication of the outputs of svd with np.dot:
>>> sarr = np.diag(spec)
>>> svd_mat = uarr.dot(sarr).dot(vharr)
SVD is commonly used in statistics and signal processing. Many other standard decompositions (QR, LU,
Cholesky, Schur), as well as solvers for linear systems, are available in scipy.linalg.
The scipy.fftpack module allows to compute fast Fourier transforms. As an illustration, a (noisy) input
signal may look like:
>>> time_step = 0.02
>>> period = 5.
>>> time_vec = np.arange(0, 20, time_step)
>>> sig = np.sin(2 * np.pi / period * time_vec) + \
... 0.5 * np.random.randn(time_vec.size)
The observer doesnt know the signal frequency, only the sampling time step of the signal sig.
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
scipy.fftpack.fft() will compute the fast Fourier transform:
>>> from scipy import fftpack
>>> sample_freq = fftpack.fftfreq(sig.size, d=time_step)
>>> sig_fft = fftpack.fft(sig)
Because the resulting power is symmetric, only the positive part of the spectrum needs to be used for finding the
frequency:
>>> pidxs = np.where(sample_freq > 0)
>>> freqs = sample_freq[pidxs]
>>> power = np.abs(sig_fft)[pidxs]
600
Peak frequency
500
400
plower
300
200
0.050.100.150.200.250.300.350.400.45
100
00 5 10 15 20 25
Frequency [Hz]
The signal frequency can be found by:
>>> freq = freqs[power.argmax()]
>>> np.allclose(freq, 1./period) # check that correct freq is found
True
Now the high-frequency noise will be removed from the Fourier transformed signal:
1
Amplitude
30 5 10 15 20
Time [s]
numpy.fft
Numpy also has an implementation of FFT (numpy.fft). However, in general the scipy one should be
preferred, as it uses more efficient underlying implementations.
80
hare
70 lynx
60 carrot
Population number ( 103 )
50
40
30
20
10
0
1900 1905 1910 1915 1920
Year
300
250
200
Power ( 103 )
150
100
50
00 5 10 15 20
Period
f1 () = K()
f0 ()
50
100
150
1. Examine the provided image moonlanding.png, which is heavily contaminated with periodic noise. In
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?
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.
120
100
80
60
40
20
0
2010 5 0 5 10
This function has a global minimum around -1.3 and a local minimum around 3.8.
The general and efficient way to find a minimum for this function is to conduct a gradient descent starting from a
given initial point. The BFGS algorithm is a good way of doing this:
>>> optimize.fmin_bfgs(f, 0)
Optimization terminated successfully.
Current function value: -7.945823
Iterations: 5
Function evaluations: 24
Gradient evaluations: 8
array([-1.30644003])
A possible issue with this approach is that, if the function has local minima the algorithm may find these local
minima instead of the global minimum depending on the initial point:
>>> optimize.fmin_bfgs(f, 3, disp=0)
array([ 3.83746663])
If we dont know the neighborhood of the global minimum to choose the initial point, we need to resort to costlier
global optimization. To find the global minimum, the simplest algorithm is the brute force algorithm, in which the
function is evaluated on each point of a given grid:
>>> grid = (-10, 10, 0.1)
>>> xmin_global = optimize.brute(f, (grid,))
>>> xmin_global
array([-1.30641113])
scipy.optimize.fminbound():
>>> xmin_local = optimize.fminbound(f, 0, 10)
>>> xmin_local
3.8374671...
Note: Finding minima of function is discussed in more details in the advanced chapter: Mathematical optimiza-
tion: finding minima of functions (page 252).
Note that only one root is found. Inspecting the plot of f reveals that there is a second root around -2.5. We find
the exact value of it by adjusting our initial guess:
>>> root2 = optimize.fsolve(f, -2.5)
>>> root2
array([-2.47948183])
Curve fitting
Suppose we have data sampled from f with some noise:
>>> xdata = np.linspace(-10, 10, num=20)
>>> ydata = f(xdata) + np.random.randn(xdata.size)
Now if we know the functional form of the function from which the samples were drawn (x^2 + sin(x) in
this case) but not the amplitudes of the terms, we can find those by least squares curve fitting. First we have to
define the function to fit:
>>> def f2(x, a, b):
... return a*x**2 + b*np.sin(x)
Now we have found the minima and roots of f and used curve fitting on it, we put all those resuls together in a
single plot:
120
f(x)
100 Curve fit result
Minima
80 Roots
60
f(x)
40
20
0
2010 5 0 5 10
x
Note: In Scipy >= 0.11 unified interfaces to all minimization and root finding algorithms
are available: scipy.optimize.minimize(), scipy.optimize.minimize_scalar() and
scipy.optimize.root(). They allow comparing various algorithms easily through the method keyword.
You can find algorithms with the same functionalities for multi-dimensional problems in scipy.optimize.
5
4
3
f(x, y)
2
1
0
1
1.0
0.5
2.01.51.0 0.0y
0.50.0 0.5
x 0.51.01.5 1.0
2.0
x4 2
f (x, y) = (4 2.1x2 + )x + xy + (4y 2 4)y 2
3
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.
Use numpy.meshgrid() and pylab.imshow() to find visually the regions.
Use scipy.optimize.fmin_bfgs() or another multi-dimensional minimizer.
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)?
See the summary exercise on Non linear least squares curve fitting: application to point extraction in topograph-
ical lidar data (page 129) for another, more advanced example.
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
array([-4, -3, -2, -1, 0, 1, 2, 3, 4])
>>> histogram = np.histogram(a, bins=bins, normed=True)[0]
>>> bins = 0.5*(bins[1:] + bins[:-1])
>>> bins
array([-3.5, -2.5, -1.5, -0.5, 0.5, 1.5, 2.5, 3.5])
>>> from scipy import stats
>>> b = stats.norm.pdf(bins) # norm is a distribution
0.40
0.35
0.30
0.25
0.20
0.15
0.10
0.05
0.00 6 4 2 0 2 4 6
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.
Here we fit a normal process to the observed data:
>>> loc, std = stats.norm.fit(a)
>>> loc
-0.045256707490...
>>> std
0.9870331586690...
5.6.2 Percentiles
The median is the value with half of the observations below, and half above:
>>> np.median(a)
-0.058028034...
It is also called the percentile 50, because 50% of the observation are below it:
>>> stats.scoreatpercentile(a, 50)
-0.0580280347...
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
different:
>>> a = np.random.normal(0, 1, size=100)
>>> b = np.random.normal(1, 1, size=10)
>>> stats.ttest_ind(a, b)
(-3.75832707..., 0.00027786...)
The scipy.interpolate is useful for fitting a function from experimental data and thus evaluating points
where no measure exists. The module is based on the FITPACK Fortran subroutines from the netlib project.
By imagining experimental data close to a sine function:
>>> 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
A cubic interpolation can also be selected by providing the kind optional keyword argument:
>>> cubic_interp = interp1d(measured_time, measures, kind=cubic)
>>> cubic_results = cubic_interp(computed_time)
1.0
measures
linear interp
0.5 cubic interp
0.0
0.5
1.0
As an introduction, let us solve the ODE dy/dt = -2y between t = 0..4, with the initial condition y(t=0)
= 1. First the function computing the derivative of the position needs to be defined:
>>> def calc_derivative(ypos, time, counter_arr):
... counter_arr += 1
An extra argument counter_arr has been added to illustrate that the function may be called several times for
a single time step, until solver convergence. The counter array is defined as:
>>> 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):
>>> counter
array([129], dtype=uint16)
and the cumulative number of iterations for each of the 10 first time steps can be obtained by:
>>> 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
be plotted:
1.0
0.8
y position [m]
0.6
0.4
0.2
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
/ m and om = wo^2 = k/m:
>>> nu_coef = cviscous / mass
>>> om_coef = kspring / mass
Thus the function will calculate the velocity and acceleration by:
>>> def calc_deri(yvec, time, nuc, omc):
... return (yvec[1], -nuc * yvec[1] - omc * yvec[0])
...
>>> time_vec = np.linspace(0, 10, 100)
>>> yarr = odeint(calc_deri, (1, 0), time_vec, args=(nu_coef, om_coef))
The final position and velocity are shown on the following Matplotlib figure:
1.5
y
1.0 y'
0.5
0.0
0.5
1.0
1.5
2.0
2.50 2 4 6 8 10
There is no Partial Differential Equations (PDE) solver in Scipy. Some Python packages for solving PDEs are
available, such as fipy or SfePy.
pl.plot(t, x, linewidth=3)
pl.plot(t, signal.detrend(x), linewidth=3)
40 1 2 3 4 5
pl.plot(t, x, linewidth=3)
pl.plot(t[::2], signal.resample(x, 50), ko)
1.5
1.0
0.5
0.0
0.5
1.0
1.50 1 2 3 4 5
Notice how on the side of the window the resampling is less accurate and has a rippling effect.
scipy.signal has many window functions: scipy.signal.hamming(),
scipy.signal.bartlett(), scipy.signal.blackman()...
scipy.signal has filtering (median filter scipy.signal.medfilt(), Wiener
scipy.signal.wiener()), but we will discuss this in the image section.
Image processing routines may be sorted according to the category of processing they perform.
In [35]: subplot(151)
Out[35]: <matplotlib.axes.AxesSubplot object at 0x925f46c>
In [37]: axis(off)
Out[37]: (-0.5, 511.5, 511.5, -0.5)
In [39]: # etc.
Exercise
Compare histograms for the different filtered images.
Mathematical morphology is a mathematical theory that stems from set theory. It characterizes and transforms
geometrical structures. Binary (black and white) images, in particular, can be transformed using this theory:
the sets to be transformed are the sets of neighboring non-zero-valued pixels. The theory was also extended to
gray-valued images.
Elementary mathematical-morphology operations use a structuring element in order to modify other geometrical
structures.
Let us first generate a 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)
array([[0, 1, 0],
[1, 1, 1],
[0, 1, 0]])
Erosion
>>> a = np.zeros((7,7), dtype=np.int)
>>> a[1:6, 2:5] = 1
>>> a
array([[0, 0, 0, 0, 0, 0, 0],
[0, 0, 1, 1, 1, 0, 0],
[0, 0, 1, 1, 1, 0, 0],
[0, 0, 1, 1, 1, 0, 0],
[0, 0, 1, 1, 1, 0, 0],
[0, 0, 1, 1, 1, 0, 0],
[0, 0, 0, 0, 0, 0, 0]])
>>> ndimage.binary_erosion(a).astype(a.dtype)
array([[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 1, 0, 0, 0],
[0, 0, 0, 1, 0, 0, 0],
[0, 0, 0, 1, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0]])
>>> #Erosion removes objects smaller than the structure
Dilation
>>> a = np.zeros((5, 5))
>>> a[2, 2] = 1
>>> a
array([[ 0., 0., 0., 0., 0.],
[ 0., 0., 0., 0., 0.],
[ 0., 0., 1., 0., 0.],
[ 0., 0., 0., 0., 0.],
[ 0., 0., 0., 0., 0.]])
>>> ndimage.binary_dilation(a).astype(a.dtype)
array([[ 0., 0., 0., 0., 0.],
[ 0., 0., 1., 0., 0.],
[ 0., 1., 1., 1., 0.],
[ 0., 0., 1., 0., 0.],
[ 0., 0., 0., 0., 0.]])
Opening
>>> a = np.zeros((5,5), dtype=np.int)
>>> a[1:4, 1:4] = 1; a[4, 4] = 1
>>> a
array([[0, 0, 0, 0, 0],
[0, 1, 1, 1, 0],
[0, 1, 1, 1, 0],
[0, 1, 1, 1, 0],
[0, 0, 0, 0, 1]])
>>> # Opening removes small objects
>>> ndimage.binary_opening(a, structure=np.ones((3,3))).astype(np.int)
array([[0, 0, 0, 0, 0],
[0, 1, 1, 1, 0],
[0, 1, 1, 1, 0],
[0, 1, 1, 1, 0],
[0, 0, 0, 0, 0]])
>>> # Opening can also smooth corners
>>> ndimage.binary_opening(a).astype(np.int)
array([[0, 0, 0, 0, 0],
[0, 0, 1, 0, 0],
[0, 1, 1, 1, 0],
[0, 0, 1, 0, 0],
[0, 0, 0, 0, 0]])
Closing: ndimage.binary_closing
Exercise
Check that opening amounts to eroding, then dilating.
An opening operation removes small structures, while a closing operation fills small holes. Such operations can
therefore be used to clean an image.
>>> a = np.zeros((50, 50))
>>> a[10:-10, 10:-10] = 1
>>> a += 0.25*np.random.standard_normal(a.shape)
Exercise
Check that the area of the reconstructed square is smaller than the area of the initial square. (The
opposite would occur if the closing step was performed before the opening).
For gray-valued images, eroding (resp. dilating) amounts to replacing a pixel by the minimal (resp. maximal)
value among pixels covered by the structuring element centered on the pixel of interest.
>>> a = np.zeros((7,7), dtype=np.int)
>>> a[1:6, 1:6] = 3
>>> a[4,4] = 2; a[2,3] = 1
>>> a
array([[0, 0, 0, 0, 0, 0, 0],
[0, 3, 3, 3, 3, 3, 0],
[0, 3, 3, 1, 3, 3, 0],
[0, 3, 3, 3, 3, 3, 0],
[0, 3, 3, 3, 2, 3, 0],
[0, 3, 3, 3, 3, 3, 0],
[0, 0, 0, 0, 0, 0, 0]])
>>> ndimage.grey_erosion(a, size=(3,3))
array([[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 1, 1, 1, 0, 0],
[0, 0, 1, 1, 1, 0, 0],
[0, 0, 3, 2, 2, 0, 0],
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0]])
Now we look for various information about the objects in the image:
>>> labels, nb = ndimage.label(mask)
>>> nb
8
>>> areas = ndimage.sum(mask, labels, xrange(1, labels.max()+1))
>>> areas
array([ 190., 45., 424., 278., 459., 190., 549., 424.])
>>> maxima = ndimage.maximum(sig, labels, xrange(1, labels.max()+1))
>>> maxima
array([ 1.80238238, 1.13527605, 5.51954079, 2.49611818,
See the summary exercise on Image processing application: counting bubbles and unmolten grains (page 134) for
a more advanced example.
The summary exercises use mainly Numpy, Scipy and Matplotlib. They provide some real-life examples of
scientific computing with Python. Now that the basics of working with Numpy and Scipy have been introduced,
the interested user is invited to try these exercises.
The exercise goal is to predict the maximum wind speed occurring every 50 years even if no measure exists for
such a period. The available data are only measured over 21 years at the Sprog meteorological station located
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
approach.
Statistical approach
The annual maxima are supposed to fit a normal probability density function. However such function is not going
to be estimated because it gives a probability from a wind speed maxima. Finding the maximum wind speed
occurring every 50 years requires the opposite approach, the result needs to be found from a defined probability.
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.
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
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
scipy.interpolate module will be very useful for fitting the quantile function. Finally the 50 years maxima is going
to be evaluated from the cumulative probability of the 2% quantile.
The annual wind speeds maxima have already been computed and saved in the numpy format in the file
examples/max-speeds.npy, thus they will be loaded by using numpy:
>>> import numpy as np
>>> max_speeds = np.load(intro/summary-exercises/examples/max-speeds.npy)
>>> years_nb = max_speeds.shape[0]
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
BivariateSpline class family is provided. All those classes for 1D and 2D splines use the FITPACK For-
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
parameters are also provided for simpler use (see interp1d, interp2d, barycentric_interpolate
and so on).
For the Sprog maxima wind speeds, the UnivariateSpline will be used because a spline of degree 3 seems
to correctly fit the data:
>>> from scipy.interpolate import UnivariateSpline
>>> quantile_func = UnivariateSpline(cprob, sorted_max_speeds)
The quantile function is now going to be evaluated from the full range of probabilities:
>>> nprob = np.linspace(0, 1, 1e2)
>>> fitted_max_speeds = quantile_func(nprob)
2%
In the current model, the maximum wind speed occurring every 50 years is defined as the upper 2% quantile. As
a result, the cumulative probability value will be:
>>> fifty_prob = 1. - 0.02
So the storm wind speed occurring every 50 years can be guessed by:
>>> fifty_wind = quantile_func(fifty_prob)
>>> fifty_wind
32.97989825...
The interested readers are now invited to make an exercise by using the wind speeds measured over 21 years.
The measurement period is around 90 minutes (the original period was around 10 minutes but the file size
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.
The first step will be to find the annual maxima by using numpy and plot them as a matplotlib bar figure.
The second step will be to use the Gumbell distribution on cumulative probabilities p_i defined as -log(
-log(p_i) ) for fitting a linear quantile function (remember that you can define the degree of the
UnivariateSpline). Plotting the annual maxima versus the Gumbell distribution should give you
the following figure.
The last step will be to find 34.23 m/s for the maximum wind speed occurring every 50 years.
5.11.2 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 131).
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).
1 Mallet, C. and Bretar, F. Full-Waveform Topographic Lidar: State-of-the-Art. ISPRS Journal of Photogrammetry and Remote Sensing
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
footprint of the laser beam is around 1m on the Earth surface, the beam can hit multiple targets during the two-way
propagation (for example the ground and the top of a tree or building). The sum of the contributions of each target
hit by the laser beam then produces a complex signal with multiple peaks, each one containing information about
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.
As you can notice, this waveform is a 80-bin-length signal with a single peak.
2 The data used for this tutorial are part of the demonstration data available for the FullAnalyze software and were kindly provided by the
GIS DRAIX.
The signal is very simple and can be modeled as a single Gaussian function and an offset corresponding to the
background noise. To fit the signal with the function, we must:
define the model
propose an initial solution
call scipy.optimize.leastsq
Model
where
coeffs[0] is B (noise)
coeffs[1] is A (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. Basically,
the function to minimize is the residuals (the difference between the data and the model):
>>> def residuals(coeffs, y, t):
... return y - model(t, coeffs)
So lets get our solution by calling scipy.optimize.leastsq with the following arguments:
the function to minimize
an initial solution
the additional arguments to pass to the function
>>> from scipy.optimize import leastsq
>>> x, flag = leastsq(residuals, x0, args=(waveform_1, t))
>>> print x
[ 2.70363341 27.82020742 15.47924562 3.05636228]
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.
Going further
Try with a more complex waveform (for instance data/waveform_2.npy) that contains three signif-
icant peaks. You must adapt the model which is now a sum of Gaussian functions instead of only one
Gaussian peak.
In some cases, writing an explicit function to compute the Jacobian is faster than letting leastsq esti-
mate it numerically. Create a function to compute the Jacobian of the residuals and use it as an input for
leastsq.
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 model enables to overcome such limitations. An example of a priori knowledge we can add is the sign
of our variables (which are all positive).
With the following initial solution:
>>> x0 = np.array([3, 50, 20, 1], dtype=float)
compare the result of scipy.optimize.leastsq and what you can get with
scipy.optimize.fmin_slsqp when adding boundary constraints.
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).
This Scanning Element Microscopy image shows a glass sample (light gray matrix) with some bubbles (on black)
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.
2. Crop the image to remove the lower panel with measure information.
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
5.11.4 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).
>>> dat = pl.imread(data/MV_HFV_012.jpg)
2. Crop the image to remove the lower panel with measure information.
>>> dat = dat[60:]
3. Slightly filter the image with a median filter in order to refine its histogram. Check how the histogram
changes.
>>> filtdat = ndimage.median_filter(dat, size=(7,7))
>>> hi_dat = np.histogram(dat, bins=np.arange(256))
>>> hi_filtdat = np.histogram(filtdat, bins=np.arange(256))
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.
>>> void = filtdat <= 50
>>> sand = np.logical_and(filtdat > 50, filtdat <= 114)
>>> glass = filtdat > 114
5. Display an image in which the three phases are colored with three different colors.
>>> phases = void.astype(np.int) + 2*glass.astype(np.int) + 3*sand.astype(np.int)
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.
>>> sand_labels, sand_nb = ndimage.label(sand_op)
>>> sand_areas = np.array(ndimage.sum(sand_op, sand_labels, np.arange(sand_labels.max()+1)))
>>> mask = sand_areas > 100
>>> remove_small_sand = mask[sand_labels.ravel()].reshape(sand_labels.shape)
(1699.875, 65.0)
In Ipython it is not possible to open a separated window for help and documentation; however one can always
open a second Ipython shell just to display help and docstrings...
Numpys and Scipys documentations can be browsed online on http://docs.scipy.org/doc.
The search button is quite useful inside the reference documentation of the two packages
(http://docs.scipy.org/doc/numpy/reference/ and http://docs.scipy.org/doc/scipy/reference/).
Tutorials on various topics as well as the complete API with all docstrings are found on this website.
139
Python Scientific lecture notes, Release 2013.1
Numpys and Scipys documentation is enriched and updated on a regular basis by users on a wiki
http://docs.scipy.org/numpy/. As a result, some docstrings are clearer or more detailed on the wiki, and
you may want to read directly the documentation on the wiki instead of the official documentation website.
Note that anyone can create an account on the wiki and write better documentation; this is an easy way to
contribute to an open-source project and improve the tools you are using!
Scipys cookbook http://www.scipy.org/Cookbook gives recipes on many common problems frequently en-
countered, such as fitting data points, solving ODE, etc.
Matplotlibs website http://matplotlib.sourceforge.net/ features a very nice gallery with a large number of
plots, each of them shows both the source code and the resulting plot. This is very useful for learning by
example. More standard documentation is also available.
140
Python Scientific lecture notes, Release 2013.1
If everything listed above fails (and Google doesnt have the answer)... dont despair! Write to the mailing-
list suited to your problem: you should have a quick answer if you describe your problem well. Experts on
scientific python often give very enlightening explanations on the mailing-list.
Numpy discussion (numpy-discussion@scipy.org): all about numpy arrays, manipulating them, in-
dexation questions, etc.
141
Python Scientific lecture notes, Release 2013.1
SciPy Users List (scipy-user@scipy.org): scientific computing with Python, high-level data process-
ing, in particular with the scipy package.
matplotlib-users@lists.sourceforge.net for plotting with matplotlib.
142
Part II
Advanced topics
143
CHAPTER 7
Chapters contents
Iterators, generator expressions and generators (page 145)
Iterators (page 145)
Generator expressions (page 146)
Generators (page 146)
Bidirectional communication (page 147)
Chaining generators (page 149)
Decorators (page 149)
Replacing or tweaking the original object (page 150)
Decorators implemented as classes and as functions (page 150)
Copying the docstring and other attributes of the original function (page 152)
Examples in the standard library (page 153)
Deprecation of functions (page 155)
A while-loop removing decorator (page 156)
A plugin registration system (page 156)
More examples and reading (page 157)
Context managers (page 157)
Catching exceptions (page 158)
Using generators to define context managers (page 159)
144
Python Scientific lecture notes, Release 2013.1
7.1.1 Iterators
Simplicity
Duplication of effort is wasteful, and replacing the various home-grown approaches with a standard feature
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.
An iterator object allows to loop just once. It holds the state (position) of a single iteration, or from the other side,
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.
>>> nums = [1,2,3] # note that ... varies: these are different objects
>>> iter(nums)
<listiterator object at ...>
>>> nums.__iter__()
<listiterator object at ...>
>>> nums.__reversed__()
<listreverseiterator object at ...>
>>> it = iter(nums)
>>> next(it) # next(obj) simply calls obj.next()
1
>>> it.next()
2
>>> next(it)
3
>>> next(it)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
StopIteration
When used in a loop, StopIteration is swallowed and causes the loop to finish. But with explicit invocation,
we can see that once the iterator is exhausted, accessing it raises an exception.
Using the for..in loop also uses the __iter__ method. This allows us to transparently start the iteration over a
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
to achieve this, iterators in addition to next are also required to have a method called __iter__ which returns
the iterator (self).
Support for iteration is pervasive in Python: all sequences and unordered containers in the standard library allow
this. The concept is also stretched to other things: e.g. file objects support iteration over lines.
>>> f = open(/etc/fstab)
>>> f is f.__iter__()
True
The file is an iterator itself and its __iter__ method doesnt create a separate object: only a single thread of
sequential access is allowed.
A second way in which iterator objects are created is through generator expressions, the basis for list compre-
hensions. To increase clarity, a generator expression must always be enclosed in parentheses or an expression. If
round parentheses are used, then a generator iterator is created. If rectangular parentheses are used, the process is
short-circuited and we get a list.
>>> (i for i in nums)
<generator object <genexpr> at 0x...>
>>> [i for i in nums]
[1, 2, 3]
>>> list(i for i in nums)
[1, 2, 3]
In Python 2.7 and 3.x the list comprehension syntax was extended to dictionary and set comprehensions. A
set is created when the generator expression is enclosed in curly braces. A dict is created when the generator
expression contains pairs of the form key:value:
>>> {i for i in range(3)}
set([0, 1, 2])
>>> {i:i**2 for i in range(3)}
{0: 0, 1: 1, 2: 4}
If you are stuck at some previous Python version, the syntax is only a bit worse:
>>> set(i for i in abc)
set([a, c, b])
>>> dict((i, ord(i)) for i in abc)
{a: 97, c: 99, b: 98}
Generator expression are fairly simple, not much to say here. Only one gotcha should be mentioned: in old
Pythons the index variable (i) would leak, and in versions >= 3 this is fixed.
7.1.3 Generators
Generators
A generator is a function that produces a sequence of results instead of a single value.
David Beazley A Curious Course on Coroutines and Concurrency
A third way to create iterator objects is to call a generator function. A generator is a function containing the
keyword yield. It must be noted that the mere presence of this keyword completely changes the nature of the
function: this yield statement doesnt have to be invoked, or even reachable, but causes the function to be
marked as a generator. When a normal function is called, the instructions contained in the body start to be
executed. When a generator is called, the execution stops before the first instruction in the body. An invocation
of a generator function creates a generator object, adhering to the iterator protocol. As with normal function
invocations, concurrent and recursive invocations are allowed.
When next is called, the function is executed until the first yield. Each encountered yield statement gives a
value becomes the return value of next. After executing the yield statement, the execution of this function is
suspended.
>>> def f():
... yield 1
... yield 2
>>> f()
<generator object f at 0x...>
>>> gen = f()
>>> gen.next()
1
>>> gen.next()
2
>>> gen.next()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
StopIteration
Lets go over the life of the single invocation of the generator function.
>>> def f():
... print("-- start --")
... yield 3
... print("-- middle --")
... yield 4
... print("-- finished --")
>>> gen = f()
>>> next(gen)
-- start --
3
>>> next(gen)
-- middle --
4
>>> next(gen)
-- finished --
Traceback (most recent call last):
...
StopIteration
Contrary to a normal function, where executing f() would immediately cause the first print to be executed,
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
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
is stored in the generator object. From the point of view of the generator function, is looks almost as if it was
running in a separate thread, but this is just an illusion: execution is strictly single-threaded, but the interpreter
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
create an iterator object. Everything that can be done with yield statements, could also be done with next
methods. Nevertheless, using a function and having the interpreter perform its magic to create an iterator has
advantages. A function can be much shorter than the definition of a class with the required next and __iter__
methods. What is more important, it is easier for the author of the generator to understand the state which is
kept in local variables, as opposed to instance attributes, which have to be used to pass data between consecutive
invocations of next on an iterator object.
A broader question is why are iterators useful? When an iterator is used to power a loop, the loop becomes very
simple. The code to initialise the state, to decide if the loop is finished, and to find the next value is extracted into
a separate place. This highlights the body of the loop the interesting part. In addition, it is possible to reuse the
iterator code in other places.
Each yield statement causes a value to be passed to the caller. This is the reason for the introduction of generators
by PEP 255 (implemented in Python 2.2). But communication in the reverse direction is also useful. One obvious
way would be some external state, either a global variable or a shared mutable object. Direct communication is
possible thanks to PEP 342 (implemented in 2.5). It is achieved by turning the previously boring yield statement
into an expression. When the generator resumes execution after a yield statement, the caller can call a method
on the generator object to either pass a value into the generator, which then is returned by the yield statement,
or a different method to inject an exception into the generator.
The first of the new methods is send(value), which is similar to next(), but passes value into the generator
to be used for the value of the yield expression. In fact, g.next() and g.send(None) are equivalent.
The second of the new methods is throw(type, value=None, traceback=None) which is equivalent
to:
raise type, value, traceback
>>> it = g()
>>> next(it)
--start--
--yielding 0--
0
>>> it.send(11)
--yield returned 11--
--yielding 1--
1
>>> it.throw(IndexError)
--yield raised IndexError()--
--yielding 2--
2
>>> it.close()
--closing--
an argument which will be passed to send of the loops iterator. If this extension 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.
Note: This is a preview of PEP 380 (not yet implemented, but accepted for Python 3.3).
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
loop such as
subgen = some_other_generator()
for v in subgen:
yield v
However, if the subgenerator is to interact properly with the caller in the case of calls to send(), throw()
and close(), things become considerably more difficult. The yield statement has to be guarded by a
try..except..finally structure similar to the one defined in the previous section to debug the generator function.
Such code is provided in PEP 380, here it suffices to say that new syntax to properly yield from a subgenerator is
being introduced in Python 3.3:
yield from some_other_generator()
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.
7.2 Decorators
Summary
This amazing feature appeared in the language almost apologetically and with concern that it might not be
that useful.
Bruce Eckel An Introduction to Python Decorators
Since a function or a class are objects, they can be passed around. Since they are mutable objects, they can be
modified. The act of altering a function or class object after it has been constructed but before is is bound to its
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
Decorators can be applied to functions and to classes. For classes the semantics are identical the original class
definition is used as an argument to call the decorator and whatever is returned is assigned under the original name.
Before the decorator syntax was implemented (PEP 318), it was possible to achieve the same effect by assigning
the function or class object to a temporary variable and then invoking the decorator explicitly and then assigning
the return value to the name of the function. This sounds like more typing, and it is, and also the name of the
decorated function doubling as a temporary variable must be used at least three times, which is prone to errors.
Nevertheless, the example above is equivalent to:
def function(): #
pass
function = decorator(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
decorator is used as an argument for the second decorator, ..., and whatever is returned by the last decorator is
attached under the name of the original function.
The decorator syntax was chosen for its readability. Since the decorator is specified before the header of the
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
function. Because the expression is prefixed with @ is stands out and is hard to miss (in your face, according to
the PEP :) ). When more than one decorator is applied, each one is placed on a separate line in an easy to read
way.
Decorators can either return the same function or class object or they can return a completely different object.
In the first case, the decorator can exploit the fact that function and class objects are mutable and add attributes,
e.g. add a docstring to a class. A decorator might do something useful even without modifying the object, for
example register the decorated class in a global registry. In the second case, virtually anything is possible: when
something different is substituted for the original function or class, the new object can be completely different.
Nevertheless, such behaviour is not the purpose of decorators: they are intended to tweak the decorated object, not
do something unpredictable. Therefore, when a function is decorated by replacing it with a different function,
the new function usually calls the original function, after doing some preparatory work. Likewise, when a class is
decorated by replacing if with a new class, the new class is usually derived from the original class. When the
purpose of the decorator is to do something every time, like to log every call to a decorated function, only the
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 only requirement on decorators is that they can be called with a single argument. This means that decorators
can be implemented as normal functions, or as classes with a __call__ method, or in theory, even as lambda
functions.
Lets compare the function and class approaches. The decorator expression (the part after @) can be either just a
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:
>>> def simple_decorator(function):
... print "doing decoration"
... return function
>>> @simple_decorator
... def function():
... print "inside function"
doing decoration
>>> function()
inside function
The two trivial decorators above fall into the category of decorators which return the original function. If they
were to return a new function, an extra level of nestedness would be required. In the worst case, three levels of
nested functions.
>>> def replacing_decorator_with_args(arg):
... print "defining the decorator"
... def _decorator(function):
... # in this inner function, arg is available too
... print "doing decoration,", arg
... def _wrapper(*args, **kwargs):
... print "inside wrapper,", args, kwargs
... return function(*args, **kwargs)
... return _wrapper
... return _decorator
>>> @replacing_decorator_with_args("abc")
... def function(*args, **kwargs):
... print "inside function,", args, kwargs
... return 14
defining the decorator
doing decoration, abc
>>> function(11, 12)
inside wrapper, (11, 12) {}
inside function, (11, 12) {}
14
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.
Compared to decorators defined as functions, complex decorators defined as classes are simpler. When an object
is created, the __init__ method is only allowed to return None, and the type of the created object cannot be
changed. This means that when a decorator is defined as a class, it doesnt make much sense to use the argument-
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
in the decorator expression and the decorator __init__ method is used for decorator construction.
>>> class decorator_class(object):
... def __init__(self, arg):
... # this method is called in the decorator expression
... print "in decorator init,", arg
... self.arg = arg
... def __call__(self, function):
... # this method is called to do the job
... print "in decorator call,", self.arg
... return function
>>> deco_instance = decorator_class(foo)
in decorator init, foo
>>> @deco_instance
Contrary to normal rules (PEP 8) decorators written as classes behave more like functions and therefore their
name often starts with a lowercase letter.
In reality, it doesnt make much sense to create a new class just to have a decorator which returns the original
function. Objects are supposed to hold state, and such decorators are more useful when the decorator returns a
new object.
>>> class replacing_decorator_class(object):
... def __init__(self, arg):
... # this method is called in the decorator expression
... print "in decorator init,", arg
... self.arg = arg
... def __call__(self, function):
... # this method is called to do the job
... print "in decorator call,", self.arg
... self.function = function
... return self._wrapper
... def _wrapper(self, *args, **kwargs):
... print "in the wrapper,", args, kwargs
... return self.function(*args, **kwargs)
>>> deco_instance = replacing_decorator_class(foo)
in decorator init, foo
>>> @deco_instance
... def function(*args, **kwargs):
... print "in function,", args, kwargs
in decorator call, foo
>>> function(11, 12)
in the wrapper, (11, 12) {}
in function, (11, 12) {}
A decorator like this can do pretty much anything, since it can modify the original function object and mangle the
arguments, call the original function or not, and afterwards mangle the return value.
7.2.3 Copying the docstring and other attributes of the original function
When a new function is returned by the decorator to replace the original function, an unfortunate consequence
is that the original function name, the original docstring, the original argument list are lost. Those attributes of
the original function can partially be transplanted to the new function by setting __doc__ (the docstring),
__module__ and __name__ (the full name of the function), and __annotations__ (extra information
about arguments and the return value of the function available in Python 3). This can be done automatically by
using functools.update_wrapper.
functools.update_wrapper(wrapper, wrapped)
Update a wrapper function to look like the wrapped function.
One important thing is missing from the list of attributes which can be copied to the replacement func-
tion: the argument list. The default values for arguments can be modified through the __defaults__,
__kwdefaults__ attributes, but unfortunately the argument list itself cannot be set as an attribute. This means
that help(function) will display a useless argument list which will be confusing for the user of the function.
An effective but ugly way around this problem is to create the wrapper dynamically, using eval. This can be
automated by using the external decorator module. It provides support for the decorator decorator, which
takes a wrapper and turns it into a decorator which preserves the function signature.
To sum things up, decorators should always use functools.update_wrapper or some other means of
copying function attributes.
First, it should be mentioned that theres a number of useful decorators available in the standard library. There are
three decorators which really form a part of the language:
classmethod causes a method to become a class method, which means that it can be invoked without
creating an instance of the class. When a normal method is invoked, the interpreter inserts the instance
object as the first positional parameter, self. When a class method is invoked, the class itself is given as
the first parameter, often called cls.
Class methods are still accessible through the class namespace, so they dont pollute the modules names-
pace. Class methods can be used to provide alternative constructors:
class Array(object):
def __init__(self, data):
self.data = data
@classmethod
def fromfile(cls, file):
data = numpy.load(file)
return cls(data)
In this example, A.a is an read-only attribute. It is also documented: help(A) includes the docstring for
attribute a taken from the getter method. Defining a as a property allows it to be a calculated on the fly, and
has the side effect of making it read-only, because no setter is defined.
To have a setter and a getter, two methods are required, obviously. Since Python 2.6 the following syntax is
preferred:
class Rectangle(object):
def __init__(self, edge):
self.edge = edge
@property
def area(self):
"""Computed area.
@area.setter
def area(self, area):
self.edge = area ** 0.5
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.
Their job is to set the getter, setter and deleter of the property object (stored as attributes fget, fset, and
fdel). The getter can be set like in the example above, when creating the object. When defining the setter,
we already have the property object under area, and we add the setter to it by using the setter method.
All this happens when we are creating the class.
Afterwards, when an instance of the class has been created, the property object is special. When the inter-
preter executes attribute access, assignment, or deletion, the job is delegated to the methods of the property
object.
To make everything crystal clear, lets define a debug example:
>>> class D(object):
... @property
... def a(self):
... print "getting", 1
... return 1
... @a.setter
... def a(self, value):
... print "setting", value
... @a.deleter
... def a(self):
... print "deleting"
>>> D.a
<property object at 0x...>
>>> D.a.fget
<function a at 0x...>
>>> D.a.fset
<function a at 0x...>
>>> D.a.fdel
<function a at 0x...>
>>> d = D() # ... varies, this is not the same a function
>>> d.a
getting 1
1
>>> d.a = 2
setting 2
>>> del d.a
deleting
>>> d.a
getting 1
1
Properties are a bit of a stretch for the decorator syntax. One of the premises of the decorator syntax that
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.
Some newer examples include:
functools.lru_cache memoizes an arbitrary function maintaining a limited cache of argu-
ments:answer pairs (Python 3.2)
functools.total_ordering is a class decorator which fills in missing ordering methods (__lt__,
__gt__, __le__, ...) based on a single available one (Python 2.7).
Lets say we want to print a deprecation warning on stderr on the first invocation of a function we dont like
anymore. If we dont want to modify the function, we can use a decorator:
class deprecated(object):
"""Print a deprecation warning once on first use of the function.
Lets say we have function which returns a lists of things, and this list created by running a loop. If we dont know
how many objects will be needed, the standard way to do this is something like:
def find_answers():
answers = []
while True:
ans = look_for_next_answer()
if ans is None:
break
answers.append(ans)
return answers
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
would have to explicitly call list(find_answers()).
We can define a decorator which constructs the list for us:
def vectorized(generator_func):
def wrapper(*args, **kwargs):
return list(generator_func(*args, **kwargs))
return functools.update_wrapper(wrapper, generator_func)
This is a class decorator which doesnt modify the class, but just puts it in a global registry. It falls into the category
of decorators returning the original object:
class WordProcessor(object):
PLUGINS = []
def process(self, text):
for plugin in self.PLUGINS:
text = plugin().cleanup(text)
return text
@classmethod
def plugin(cls, plugin):
cls.PLUGINS.append(plugin)
@WordProcessor.plugin
class CleanMdashesExtension(object):
def cleanup(self, text):
return text.replace(—, u\N{em dash})
Here we use a decorator to decentralise the registration of plugins. We call our decorator with a noun, instead of
a verb, because we use it to declare that our class is a plugin for WordProcessor. Method plugin simply
appends the class to the list of plugins.
A word about the plugin itself: it replaces HTML entity for em-dash with a real Unicode em-dash character. It
exploits the unicode literal notation to insert a character by using its name in the unicode database (EM DASH).
If the Unicode character was inserted directly, it would be impossible to distinguish it from an en-dash in the
source of a program.
A context manager is an object with __enter__ and __exit__ methods which can be used in the with state-
ment:
with manager as var:
do_something(var)
In other words, the context manager protocol defined in PEP 343 permits the extraction of the boring part of a
try..except..finally structure into a separate class leaving only the interesting do_something block.
1. The __enter__ method is called first. It can return a value which will be assigned to var. The as-part
is optional: if it isnt present, the value returned by __enter__ is simply ignored.
2. The block of code underneath with is executed. Just like with try clauses, it can either execute success-
fully to the end, or it can break, continue or return, or it can throw an exception. Either way, after the
block is finished, the __exit__ method is called. If an exception was thrown, the information about the
exception is passed to __exit__, which is described below in the next subsection. In the normal case,
exceptions can be ignored, just like in a finally clause, and will be rethrown after __exit__ is finished.
Lets say we want to make sure that a file is closed immediately after we are done writing to it:
>>> class closing(object):
... def __init__(self, obj):
... self.obj = obj
... def __enter__(self):
... return self.obj
... def __exit__(self, *args):
... self.obj.close()
>>> with closing(open(/tmp/file, w)) as f:
... f.write(the contents\n)
Here we have made sure that the f.close() is called when the with block is exited. Since closing files is such
a common operation, the support for this is already present in the file class. It has an __exit__ method which
calls close and can be used as a context manager itself:
>>> with open(/tmp/file, a) as f:
... f.write(more contents\n)
The common use for try..finally is releasing resources. Various different cases are implemented similarly:
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
it is most convenient to have the support built in. With each release, Python provides support in more places:
all file-like objects:
file automatically closed
fileinput, tempfile (py >= 3.2)
bz2.BZ2File, gzip.GzipFile, tarfile.TarFile, zipfile.ZipFile
ftplib, nntplib close connection (py >= 3.2 or 3.3)
locks
multiprocessing.RLock lock and unlock
multiprocessing.Semaphore
memoryview automatically release (py >= 3.2 and 2.7)
decimal.localcontext modify precision of computations temporarily
_winreg.PyHKEY open and close hive key
warnings.catch_warnings kill warnings temporarily
contextlib.closing the same as the example above, call close
parallel programming
concurrent.futures.ThreadPoolExecutor invoke in parallel then kill thread pool (py
>= 3.2)
concurrent.futures.ProcessPoolExecutor invoke in parallel then kill process pool
(py >= 3.2)
nogil solve the GIL problem temporarily (cython only :( )
When an exception is thrown in the with-block, it is passed as arguments to __exit__. Three arguments are
used, the same as returned by sys.exc_info(): type, value, traceback. When no exception is thrown, None
is used for all three arguments. The context manager can swallow the exception by returning a true value from
__exit__. Exceptions can be easily ignored, because if __exit__ doesnt use return and just falls of the
end, None is returned, a false value, and therefore the exception is rethrown after __exit__ is finished.
The ability to catch exceptions opens interesting possibilities. A classic example comes from unit-tests we
want to make sure that some code throws the right kind of exception:
class assert_raises(object):
# based on pytest and unittest.TestCase
def __init__(self, type):
self.type = type
def __enter__(self):
pass
def __exit__(self, type, value, traceback):
if type is None:
raise AssertionError(exception expected)
if issubclass(type, self.type):
return True # swallow the expected exception
raise AssertionError(wrong exception type)
with assert_raises(KeyError):
{}[foo]
When discussing generators (page 146), it was said that we prefer generators to iterators implemented as classes
because they are shorter, sweeter, and the state is stored as local, not instance, variables. On the other hand, as
described in Bidirectional communication (page 147), 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
context managers as special generator functions. In fact, the generator protocol was designed to support this use
case.
@contextlib.contextmanager
def some_generator(<arguments>):
<setup>
try:
yield <value>
finally:
<cleanup>
The contextlib.contextmanager helper takes a generator and turns it into a context manager. The gen-
erator has to obey some rules which are enforced by the wrapper function most importantly it must yield
exactly once. The part before the yield is executed from __enter__, the block of code protected by the con-
text manager is executed when the generator is suspended in yield, and the rest is executed in __exit__. If
an exception is thrown, the interpreter hands it to the wrapper through __exit__ arguments, and the wrapper
function then throws it at the point of the yield statement. Through the use of generators, the context manager
is shorter and simpler.
Lets rewrite the closing example as a generator:
@contextlib.contextmanager
def closing(obj):
try:
yield obj
finally:
obj.close()
Advanced Numpy
Prerequisites
Numpy (>= 1.2; preferably newer...)
Cython (>= 0.12, for the Ufunc example)
PIL (used in a couple of examples)
160
Python Scientific lecture notes, Release 2013.1
Chapter contents
Life of ndarray (page 161)
Its... (page 161)
Block of memory (page 162)
Data types (page 163)
Indexing scheme: strides (page 168)
Findings in dissection (page 174)
Universal functions (page 174)
What they are? (page 174)
Exercise: building an ufunc from scratch (page 176)
Solution: building an ufunc from scratch (page 179)
Generalized ufuncs (page 182)
Interoperability features (page 183)
Sharing multidimensional, typed data (page 183)
The old buffer protocol (page 183)
The old buffer protocol (page 184)
Array interface protocol (page 185)
Array siblings: chararray, maskedarray, matrix (page 186)
chararray: vectorized string operations (page 186)
masked_array missing data (page 186)
recarray: purely convenience (page 189)
matrix: convenience? (page 189)
Summary (page 189)
Contributing to Numpy/Scipy (page 189)
Why (page 189)
Reporting bugs (page 189)
Contributing to documentation (page 190)
Contributing features (page 191)
How to help, in general (page 192)
8.1.1 Its...
ndarray =
block of memory + indexing scheme + data type descriptor
raw data
how to locate an element
how to interpret an element
/* Block of memory */
char *data;
/* Indexing scheme */
int nd;
npy_intp *dimensions;
npy_intp *strides;
/* Other stuff */
PyObject *base;
int flags;
PyObject *weakreflist;
} PyArrayObject;
>>> x[0] = 9
>>> y
array([9, 2, 3])
>>> y.flags
C_CONTIGUOUS : True
F_CONTIGUOUS : True
OWNDATA : False
WRITEABLE : False
ALIGNED : True
UPDATEIFCOPY : False
The owndata and writeable flags indicate status of the memory block.
See also : array interface
The descriptor
chunk_id "RIFF"
chunk_size 4-byte unsigned little-endian integer
format "WAVE"
fmt_id "fmt "
fmt_size 4-byte unsigned little-endian integer
audio_fmt 2-byte unsigned little-endian integer
num_channels 2-byte unsigned little-endian integer
sample_rate 4-byte unsigned little-endian integer
byte_rate 4-byte unsigned little-endian integer
block_align 2-byte unsigned little-endian integer
bits_per_sample 2-byte unsigned little-endian integer
data_id "data"
data_size 4-byte unsigned little-endian integer
44-byte block of raw data (in the beginning of the file)
... followed by data_size bytes of actual sound data.
The .wav file header as a Numpy structured data type:
>>> wav_header_dtype = np.dtype([
... ("chunk_id", (str, 4)), # flexible-sized scalar type, item size 4
... ("chunk_size", "<u4"), # little-endian unsigned 32-bit integer
... ("format", "S4"), # 4-byte string
... ("fmt_id", "S4"),
... ("fmt_size", "<u4"),
... ("audio_fmt", "<u2"), #
... ("num_channels", "<u2"), # .. more of the same ...
... ("sample_rate", "<u4"), #
... ("byte_rate", "<u4"),
... ("block_align", "<u2"),
... ("bits_per_sample", "<u2"),
... ("data_id", ("S1", (2, 2))), # sub-array, just for fun!
... ("data_size", "u4"),
... #
... # the sound data itself cannot be represented here:
... # it does not have a fixed size
... ])
See Also:
wavreader.py
>>> wav_header_dtype[format]
dtype(|S4)
>>> wav_header_dtype.fields
<dictproxy object at ...>
>>> wav_header_dtype.fields[format]
(dtype(|S4), 8)
The first element is the sub-dtype in the structured data, corresponding to the name format
The second one is its offset (in bytes) from the beginning of the item
Exercise
Mini-exercise, make a sparse dtype by using offsets, and only some of the fields:
>>> wav_header_dtype = np.dtype(dict(
... names=[format, sample_rate, data_id],
... offsets=[offset_1, offset_2, offset_3], # counted from start of structure in bytes
... formats=list of dtypes for each of the fields,
... ))
and use that to read the sample rate, and data_id (as sub-array).
>>> f = open(data/test.wav, r)
>>> wav_header = np.fromfile(f, dtype=wav_header_dtype, count=1)
>>> f.close()
>>> print(wav_header)
[ (RIFF, 17402L, WAVE, fmt , 16L, 1, 1, 16000L, 32000L, 2, 16, [[d, a], [t, a]], 173
>>> wav_header[sample_rate]
array([16000], dtype=uint32)
Note: There are existing modules such as wavfile, audiolab, etc. for loading sound data...
casting
on assignment
on array construction
on arithmetic
etc.
and manually: .astype(dtype)
data re-interpretation
manually: .view(dtype)
Casting
Re-interpretation / viewing
Note:
.view() makes views, does not copy (or alter) the memory block
only changes the dtype (and adjusts array shape):
>>> x[1] = 5
>>> y
array([328193], dtype=int32)
>>> y.base is x
True
See Also:
view-colors.py
You have RGBA data in an array:
>>> x = np.zeros((10, 10, 4), dtype=np.int8)
>>> x[:, :, 0] = 1
>>> x[:, :, 1] = 2
>>> x[:, :, 2] = 3
>>> x[:, :, 3] = 4
where the last three dimensions are the R, B, and G, and alpha channels.
How to make a (10, 10) structured array with field names r, g, b, a without copying data?
>>> y = ...
Solution
>>> y = x.view([(r, i1),
... (g, i1),
... (b, i1),
... (a, i1)]
... )[:, :, 0]
What happened?
... we need to look into what x[0,1] actually means
Main point
The question
>>> x = np.array([[1, 2, 3],
... [4, 5, 6],
... [7, 8, 9]], dtype=np.int8)
>>> str(x.data)
\x01\x02\x03\x04\x05\x06\x07\x08\t
simple, flexible
(6, 2)
>>> str(x.data)
\x01\x00\x02\x00\x03\x00\x04\x00\x05\x00\x06\x00\x07\x00\x08\x00\t\x00
sF
j = d1 d2 ...dj1 itemsize
Transposition does not affect the memory layout of the data, only strides
>>> x.strides
(2, 1)
>>> y.strides
(1, 2)
>>> str(x.data)
\x01\x02\x03\x04
>>> str(y.data)
\x01\x03\x02\x04
Everything can be represented by changing only shape, strides, and possibly adjusting the data
pointer!
Never makes copies of the data
>>> x = np.array([1, 2, 3, 4, 5, 6], dtype=np.int32)
>>> y = x[::-1]
>>> y
array([6, 5, 4, 3, 2, 1], dtype=int32)
>>> y.strides
(-4,)
>>> y = x[2:]
>>> y.__array_interface__[data][0] - x.__array_interface__[data][0]
8
But: not all reshaping operations can be represented by playing with strides.
>>> a = np.arange(6, dtype=np.int8).reshape(3, 2)
>>> b = a.T
>>> b.strides
(1, 2)
Here, there is no way to represent the array c given one stride and the block of memory for a. Therefore, the
reshape operation needs to make a copy here.
Stride manipulation
Warning: as_strided does not check that you stay inside the memory block bounds...
See Also:
stride-fakedims.py
Exercise
array([1, 2, 3, 4], dtype=np.int8)
Spoiler
Stride can also be 0:
>>> x = np.array([1, 2, 3, 4], dtype=np.int8)
>>> y = as_strided(x, strides=(0, 1), shape=(3, 4))
>>> y
array([[1, 2, 3, 4],
[1, 2, 3, 4],
[1, 2, 3, 4]], dtype=int8)
>>> y.base.base is x
True
Broadcasting
Doing something useful with it: outer product of [1, 2, 3, 4] and [5, 6, 7]
>>> x = np.array([1, 2, 3, 4], dtype=np.int16)
>>> x2 = as_strided(x, strides=(0, 1*2), shape=(3, 4))
>>> x2
array([[1, 2, 3, 4],
[1, 2, 3, 4],
[1, 2, 3, 4]], dtype=int16)
>>> x2 * y2
array([[ 5, 10, 15, 20],
[ 6, 12, 18, 24],
[ 7, 14, 21, 28]], dtype=int16)
See Also:
stride-diagonals.py
Challenge
Pick diagonal entries of the matrix: (assume C memory order):
>>> x = np.array([[1, 2, 3],
... [4, 5, 6],
... [7, 8, 9]], dtype=np.int32)
Note:
>>> y = np.diag(x, k=1)
>>> y
array([2, 6], dtype=int32)
However,
>>> y.flags.owndata
True
It makes a copy?!
See Also:
stride-diagonals.py
Challenge
Compute the tensor trace:
>>> x = np.arange(5*5*5*5).reshape(5,5,5,5)
>>> s = 0
>>> for i in xrange(5):
... for j in xrange(5):
... s += x[j,i,j,i]
Solution
>>> y = as_strided(x, shape=(5, 5), strides=((5*5*5 + 5)*x.itemsize,
... (5*5 + 1)*x.itemsize))
>>> s2 = y.sum()
In [2]: y = np.zeros((20000*67,))[::67]
Sometimes,
>>> a -= b
>>> a -= b.copy()
Parts of an Ufunc
1. Provided by user
void ufunc_loop(void **args, int *dimensions, int *steps, void *data)
{
/*
* int8 output = elementwise_function(int8 input_1, int8 input_2)
*
* This function must compute the ufunc for many values at once,
* in the way shown below.
*/
char *input_1 = (char*)args[0];
char *input_2 = (char*)args[1];
char *output = (char*)args[2];
int i;
Making it easier
z z2 + c
where c = x + iy is a complex number. This iteration is repeated if z stays finite no matter how long the iteration
runs, c belongs to the Mandelbrot set.
Make ufunc called mandel(z0, c) that computes:
z = z0
for k in range(iterations):
z = z*z + c
say, 100 iterations or until z.real**2 + z.imag**2 > 1000. Use it to determine which c are in the
Mandelbrot set.
Our function is a simple one, so make use of the PyUFunc_* helpers.
Write it in Cython
See Also:
mandel.pyx, mandelplot.py
#
# Fix the parts marked by TODO
#
#
# Compile this file by (Cython >= 0.12 required because of the complex vars)
#
# cython mandel.pyx
# python setup.py build_ext -i
#
# and try it out with, in this directory,
#
# >>> import mandel
# >>> mandel.mandel(0, 1 + 2j)
#
#
#
# Some points of note:
#
# - Its *NOT* allowed to call any Python functions here.
#
# The Ufunc loop runs with the Python Global Interpreter Lock released.
# Hence, the nogil.
#
# - And so all local variables must be declared with cdef
#
# - Note also that this function receives *pointers* to the data
#
#
# TODO: write the Mandelbrot iteration for one point here,
# as you would write it in Python.
#
# Say, use 100 as the maximum number of iterations, and 1000
# as the cutoff for z.real**2 + z.imag**2.
#
import_array()
import_ufunc()
#
# Reminder: some pre-made Ufunc loops:
#
# ================ =======================================================
# PyUfunc_f_f float elementwise_func(float input_1)
# PyUfunc_ff_f float elementwise_func(float input_1, float input_2)
# PyUfunc_d_d double elementwise_func(double input_1)
# PyUfunc_dd_d double elementwise_func(double input_1, double input_2)
# PyUfunc_D_D elementwise_func(complex_double *input, complex_double* complex_double)
# PyUfunc_DD_D elementwise_func(complex_double *in1, complex_double *in2, complex_double* o
# ================ =======================================================
#
# The full list is above.
#
#
# Type codes:
#
# NPY_BOOL, NPY_BYTE, NPY_UBYTE, NPY_SHORT, NPY_USHORT, NPY_INT, NPY_UINT,
# NPY_LONG, NPY_ULONG, NPY_LONGLONG, NPY_ULONGLONG, NPY_FLOAT, NPY_DOUBLE,
# NPY_LONGDOUBLE, NPY_CFLOAT, NPY_CDOUBLE, NPY_CLONGDOUBLE, NPY_DATETIME,
# NPY_TIMEDELTA, NPY_OBJECT, NPY_STRING, NPY_UNICODE, NPY_VOID
#
mandel = PyUFunc_FromFuncAndData(
loop_func,
elementwise_funcs,
input_output_types,
1, # number of supported input types
TODO, # number of input args
TODO, # number of output args
0, # identity element, never mind this
"mandel", # function name
"mandel(z, c) -> computes z*z + c", # docstring
0 # unused
)
#
# Some points of note:
#
# - Its *NOT* allowed to call any Python functions here.
#
# The Ufunc loop runs with the Python Global Interpreter Lock released.
# Hence, the nogil.
#
# - And so all local variables must be declared with cdef
#
# - Note also that this function receives *pointers* to the data;
# the "traditional" solution to passing complex variables around
#
# Straightforward iteration
for k in range(100):
z = z*z + c
if z.real**2 + z.imag**2 > 1000:
break
# ----------------------------------------------------------
import_array()
import_ufunc()
loop_func[0] = PyUFunc_DD_D
input_output_types[0] = NPY_CDOUBLE
input_output_types[1] = NPY_CDOUBLE
input_output_types[2] = NPY_CDOUBLE
elementwise_funcs[0] = <void*>mandel_single_point
mandel = PyUFunc_FromFuncAndData(
loop_func,
elementwise_funcs,
input_output_types,
1, # number of supported input types
2, # number of input args
1, # number of output args
0, # identity element, never mind this
"mandel", # function name
"mandel(z, c) -> computes iterated z*z + c", # docstring
0 # unused
)
import numpy as np
import mandel
x = np.linspace(-1.7, 0.6, 1000)
y = np.linspace(-1.4, 1.4, 1000)
c = x[None,:] + 1j*y[:,None]
z = mandel.mandel(c, c)
plt.show()
loop_funcs[0] = PyUFunc_DD_D
input_output_types[0] = NPY_CDOUBLE
input_output_types[1] = NPY_CDOUBLE
input_output_types[2] = NPY_CDOUBLE
elementwise_funcs[0] = <void*>mandel_single_point
loop_funcs[1] = PyUFunc_FF_F
input_output_types[3] = NPY_CFLOAT
input_output_types[4] = NPY_CFLOAT
input_output_types[5] = NPY_CFLOAT
elementwise_funcs[1] = <void*>mandel_single_point_singleprec
mandel = PyUFunc_FromFuncAndData(
loop_func,
elementwise_funcs,
input_output_types,
2, # number of supported input types <----------------
2, # number of input args
1, # number of output args
0, # identity element, never mind this
ufunc
output = elementwise_function(input)
Both output and input can be a single array element only.
generalized ufunc
output and input can be arrays with a fixed number of dimensions
For example, matrix trace (sum of diag elements):
input shape = (n, n)
output shape = () i.e. scalar
(n, n) -> ()
Matrix product:
input_1 shape = (m, n)
input_2 shape = (n, p)
output shape = (m, p)
Status in Numpy
the last two dimensions became core dimensions, and are modified as per the signature
otherwise, the g-ufunc operates elementwise
matrix multiplication this way could be useful for operating on many small matrices at once
int i;
input_1 += steps[0];
input_2 += steps[1];
output += steps[2];
}
}
Suppose you
1. Write a library than handles (multidimensional) binary data,
2. Want to make it easy to manipulate the data with Numpy, or whatever other library,
3. ... but would not like to have Numpy as a dependency.
Currently, 3 solutions:
1. the old buffer interface
2. the array interface
3. the new buffer interface (PEP 3118)
pilbuffer.py
>>> import Image
>>> data = np.zeros((200, 200, 4), dtype=np.int8)
>>> data[:, :] = [255, 0, 0, 255] # Red
>>> # In PIL, RGBA images consist of 32-bit integers whose bytes are [RR,GG,BB,AA]
>>> data = data.view(np.int32).squeeze()
>>> img = Image.frombuffer("RGBA", (200, 200), data)
>>> img.save(test.png)
Q:
Check what happens if data is now modified, and img saved again.
import numpy as np
import Image
#
# Modify the original data, and save again.
#
# It turns out that PIL, which knows next to nothing about Numpy,
# happily shares the same data.
#
x[:,:,1] = 254
img.save(test2.png)
Multidimensional buffers
Data type information present
Numpy-specific approach; slowly deprecated (but not going away)
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,
}
Note: .view() has a second meaning: it can make an ndarray an instance of a specialized ndarray subclass
Masked arrays are arrays that may have missing or invalid entries.
For example, suppose we have an array where the fourth entry is invalid:
>>> x = np.array([1, 2, 3, -99, 5])
Warning: Not all Numpy functions respect masks, for instance np.dot, so check the return types.
The mask
>>> mx[1] = 9
>>> mx
masked_array(data = [1 9 3 -- 5],
mask = [False False False True False],
fill_value = 999999)
The masked entries can be filled with a given value to get an usual array back:
>>> x2 = mx.filled(-1)
>>> x2
array([ 1, 9, 3, -1, 5])
Domain-aware functions
Note: Streamlined and more seamless support for dealing with missing data in arrays is making its way into
Numpy 1.7. Stay tuned!
>>> populations.mean(axis=0)
masked_array(data = [40472.7272727 18627.2727273 42400.0],
mask = [False False False],
fill_value = 1e+20)
>>> populations.std(axis=0)
masked_array(data = [21087.656489 15625.7998142 3322.50622558],
mask = [False False False],
fill_value = 1e+20)
Note that Matplotlib knows about masked arrays:
>>> plt.plot(year, populations, o-)
[<matplotlib.lines.Line2D object at ...>, ...]
80000
70000
60000
50000
40000
30000
20000
10000
0
1900 1905 1910 1915 1920
>>> arr = np.array([(a, 1), (b, 2)], dtype=[(x, S1), (y, int)])
>>> arr2 = arr.view(np.recarray)
>>> arr2.x
chararray([a, b],
dtype=|S1)
>>> arr2.y
array([1, 2])
always 2-D
* is the matrix product, not the elementwise one
>>> np.matrix([[1, 0], [0, 1]]) * np.matrix([[1, 2], [3, 4]])
matrix([[1, 2],
[3, 4]])
8.5 Summary
8.6.1 Why
Theres a bug?
I dont understand what this is supposed to do?
I have this fancy code. Would you like to have it?
Id like to help! What can I do?
>>> np.random.permutation(12)
array([ 6, 11, 4, 10, 2, 8, 1, 7, 9, 3, 0, 5])
>>> np.random.permutation(12.)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "mtrand.pyx", line 3311, in mtrand.RandomState.permutation
File "mtrand.pyx", line 3254, in mtrand.RandomState.shuffle
TypeError: len() of unsized object
1. Documentation editor
http://docs.scipy.org/numpy
Registration
Register an account
Subscribe to scipy-dev mailing list (subscribers-only)
To: scipy-dev@scipy.org
Hi,
Cheers,
N. N.
<edit stuff>
git commit -a
Debugging code
Prerequisites
Numpy
IPython
nosetests (http://readthedocs.org/docs/nose/en/latest/)
pyflakes (http://pypi.python.org/pypi/pyflakes)
gdb for the C-debugging part.
Chapters contents
Avoiding bugs (page 193)
Coding best practices to avoid getting in trouble (page 193)
pyflakes: fast static analysis (page 194)
* Running pyflakes on the current edited file (page 194)
* A type-as-go spell-checker like integration (page 195)
Debugging workflow (page 196)
Using the Python debugger (page 196)
Invoking the debugger (page 197)
* Postmortem (page 197)
* Step-by-step execution (page 198)
* Other ways of starting a debugger (page 200)
Debugger commands and interaction (page 201)
* Getting help when in the debugger (page 201)
Debugging segmentation faults using gdb (page 201)
193
Python Scientific lecture notes, Release 2013.1
Brian Kernighan
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?
In TextMate
Menu: TextMate -> Preferences -> Advanced -> Shell variables, add a shell variable:
TM_PYCHECKER=/Library/Frameworks/Python.framework/Versions/Current/bin/pyflakes
(define-minor-mode pyflakes-mode
"Toggle pyflakes mode.
With no argument, this command toggles the mode.
Non-null prefix argument turns on the mode.
Null prefix argument turns off the mode."
;; The initial value.
nil
;; The indicator for the mode line.
" Pyflakes"
;; The minor mode bindings.
( ([f5] . pyflakes-thisfile) )
)
In vim
Use the pyflakes.vim plugin:
1. download the zip file from http://www.vim.org/scripts/script.php?script_id=2441
2. extract the files in ~/.vim/ftplugin/python
3. make sure your vimrc has filetype plugin indent on
Alternatively: use the syntastic plugin. This can be configured to use flake8 too and also handles
on-the-fly checking for many other languages.
(add-to-list flymake-allowed-file-name-masks
("\\.py\\" flymake-pyflakes-init)))
I you do have a non trivial bug, this is when debugging strategies kick in. There is no silver bullet. Yet, strategies
help:
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-
fail cycles
1. Make it fail reliably. Find a test case that makes the code fail every time.
2. Divide and Conquer. Once you have a failing test case, isolate the failing code.
Which module.
Which function.
Which line of code.
=> isolate a small reproducible failure: a test case
3. Change one thing at a time and re-run the failing test case.
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.
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.
print
Yes, print statements do work as a debugging tool. However to inspect runtime, it is often more efficient
to use the debugger.
Postmortem
/home/varoquau/dev/scipy-lecture-notes/advanced/debugging_optimizing/index_error.py in index_error
3 def index_error():
4 lst = list(foobar)
----> 5 print lst[len(lst)]
6
7 if __name__ == __main__:
In [2]: %debug
> /home/varoquau/dev/scipy-lecture-notes/advanced/debugging_optimizing/index_error.py(5)index_erro
4 lst = list(foobar)
----> 5 print lst[len(lst)]
6
ipdb> list
1 """Small snippet to raise an IndexError."""
2
3 def index_error():
4 lst = list(foobar)
----> 5 print lst[len(lst)]
6
7 if __name__ == __main__:
8 index_error()
9
ipdb> len(lst)
6
ipdb> print lst[len(lst)-1]
r
ipdb> quit
In [3]:
Step-by-step execution
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
work well.
Run the script in IPython with the debugger using %run -d wiener_filtering.p :
In [1]: %run -d wiener_filtering.py
*** Blank or comment
*** Blank or comment
*** Blank or comment
Breakpoint 1 at /home/varoquau/dev/scipy-lecture-notes/advanced/debugging_optimizing/wiener_f
NOTE: Enter c at the ipdb> prompt to start your script.
> <string>(1)<module>()
ipdb> b 34
Breakpoint 2 at /home/varoquau/dev/scipy-lecture-notes/advanced/debugging_optimizing/wiener_f
Step into code with n(ext) and s(tep): next jumps to the next statement in the current execution
context, while step will go across execution contexts, i.e. enable exploring inside function calls:
ipdb> s
> /home/varoquau/dev/scipy-lecture-notes/advanced/debugging_optimizing/wiener_filtering.py(35
2 34 noisy_img = noisy_img
---> 35 denoised_img = local_mean(noisy_img, size=size)
36 l_var = local_var(noisy_img, size=size)
ipdb> n
> /home/varoquau/dev/scipy-lecture-notes/advanced/debugging_optimizing/wiener_filtering.py(36
35 denoised_img = local_mean(noisy_img, size=size)
---> 36 l_var = local_var(noisy_img, size=size)
37 for i in range(3):
Oh dear, nothing but integers, and 0 variation. Here is our bug, we are doing integer arithmetic.
/home/esc/physique-cuso-python-2013/scipy-lecture-notes/advanced/debugging/wiener_filtering.py in
55 pl.matshow(noisy_lena[cut], cmap=pl.cm.gray)
56
---> 57 denoised_lena = iterated_wiener(noisy_lena)
58 pl.matshow(denoised_lena[cut], cmap=pl.cm.gray)
59
/home/esc/physique-cuso-python-2013/scipy-lecture-notes/advanced/debugging/wiener_filtering.py in
38 res = noisy_img - denoised_img
39 noise = (res**2).sum()/res.size
---> 40 noise_level = (1 - noise/l_var )
41 noise_level[noise_level<0] = 0
42 denoised_img += noise_level*res
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.
Undocumented commands:
======================
retval rv
If you have a segmentation fault, you cannot debug it with pdb, as it crashes the Python interpreter before it can
drop in the debugger. Similarly, if you have a bug in C code embedded in Python, pdb is useless. For this we turn
to the gnu debugger, gdb, available on Linux.
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
We get a segfault, and gdb captures it for post-mortem debugging in the C level stack (not the Python call stack).
We can debug the C call stack using gdbs commands:
(gdb) up
#1 0x004af4f5 in _copy_from_same_shape (dest=<value optimized out>,
src=<value optimized out>, myfunc=0x496780 <_strided_byte_copy>,
swap=0)
at numpy/core/src/multiarray/ctors.c:748
748 myfunc(dit->dataptr, dest->strides[maxaxis],
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
#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
3750 ../Python/ceval.c: No such file or directory.
in ../Python/ceval.c
(gdb) up
#9 PyEval_EvalFrameEx (f=
Frame 0x85371ec, for file /home/varoquau/usr/lib/python2.6/site-packages/numpy/core/arrayprint
at ../Python/ceval.c:2412
2412 in ../Python/ceval.c
(gdb)
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:
(gdb) pyframe
/home/varoquau/usr/lib/python2.6/site-packages/numpy/core/arrayprint.py (158): _leading_trailing
(gdb)
This is numpy code, we need to go up until we find code that we have written:
(gdb) up
...
(gdb) up
#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.
in ../Python/ceval.c
(gdb) pyframe
segfault.py (12): print_big_array
def make_big_array(small_array):
big_array = stride_tricks.as_strided(small_array,
shape=(2e6, 2e6), strides=(32, 32))
return big_array
def print_big_array(small_array):
big_array = make_big_array(small_array)
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.
Note: For a list of Python-specific commands defined in the gdbinit, read the source of this file.
Wrap up exercise
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?
Python source code: to_debug.py
Optimizing code
Donald Knuth
Premature optimization is the root of all evil
Prerequisites
line_profiler
gprof2dot
dot utility from Graphviz
Chapters contents
Optimization workflow (page 204)
Profiling Python code (page 205)
Timeit (page 205)
Profiler (page 205)
Line-profiler (page 206)
Running cProfile (page 207)
Using gprof2dot (page 207)
Making code go faster (page 208)
Algorithmic optimization (page 208)
* Example of the SVD (page 208)
Writing faster numerical code (page 209)
Additional Links (page 211)
204
Python Scientific lecture notes, Release 2013.1
3. Optimize the code by profiling simple use-cases to find the bottlenecks and speeding up these bottleneck,
finding a better algorithm or implementation. Keep in mind that a trade off should be found between
profiling on a realistic example and the simplicity and speed of execution of the code. For efficient work, it
is best to work with profiling runs lasting around 10s.
10.2.1 Timeit
In [2]: a = np.arange(1000)
In [3]: %timeit a ** 2
100000 loops, best of 3: 5.73 us per loop
In [5]: %timeit a * a
100000 loops, best of 3: 5.56 us per loop
Note: For long running calls, using %time instead of %timeit; it is less precise but faster
10.2.2 Profiler
Useful when you have a large program to profile, for example the following file:
# For this example to run, you also need the ica.py file
import numpy as np
from scipy import linalg
def test():
data = np.random.random((5000, 100))
u, s, v = linalg.svd(data)
pca = np.dot(u[:, :10].T, data)
results = fastica(pca.T, whiten=False)
if __name__ == __main__:
test()
Note: This is a combination of two unsupervised learning techniques, principal component analysis (PCA) and
independent component analysis (ICA<http://en.wikipedia.org/wiki/Independent_component_ana lysis>_).
PCA is a technique for dimensionality reduction, i.e. an algorithm to explain the observed variance in your data
using less dimensions. ICA is a source seperation technique, for example to unmix multiple signals that have been
recorded through multiple sensors. Doing a PCA first and then an ICA can be useful if you have more sensors
than signals. For more information see: the FastICA example from scikits-learn.
To run it, you also need to download the ica module. In IPython we can time the script:
In [1]: %run -t demo.py
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
make this step go faster, or to avoid this step (algorithmic optimization). Spending time on the rest of the code is
useless.
10.2.3 Line-profiler
The profiler is great: it 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
@profile (no need to import it)
@profile
def test():
data = np.random.random((5000, 100))
u, s, v = linalg.svd(data)
pca = np.dot(u[: , :10], data)
results = fastica(pca.T, whiten=False)
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:
$ kernprof.py -l -v demo.py
File: demo.py
Function: test at line 5
Total time: 14.2793 s
The SVD is taking all the time. We need to optimise this line.
In the IPython example above, IPython simply calls the built-in Python profilers cProfile and profile. This
can be useful if you wish to process the profiler output with a visualization tool.
$ python -m cProfile -o demo.prof demo.py
Using the -o switch will output the profiler results to the file demo.prof.
In case you want a more visual representation of the profiler output, you can use the gprof2dot tool:
$ gprof2dot -f pstats demo.prof | dot -Tpng -o demo-prof.png
Once we have identified the bottlenecks, we need to make the corresponding code go faster.
The first thing to look for is algorithmic optimization: are there ways to compute less, or better?
For a high-level view of the problem, a good understanding of the maths behind the algorithm helps. However, it
is not uncommon to find simple changes, like moving computation or memory allocation outside a for loop,
that bring in big gains.
In both examples above, the SVD - Singular Value Decomposition - is what takes most of the time. Indeed, the
computational cost of this algorithm is roughly n3 in the size of the input matrix.
However, in both of these example, we are not using all the output of the SVD, but only the first few rows of its
first return argument. If we use the svd implementation of scipy, we can ask for an incomplete version of the
SVD. Note that implementations of linear algebra in scipy are richer then those in numpy and should be preferred.
Real incomplete SVDs, e.g. computing only the first 10 eigenvectors, can be computed with arpack, available in
scipy.sparse.linalg.eigsh.
A complete discussion on advanced use of numpy is found in chapter Advanced Numpy (page 160), or in the
article The NumPy array: a structure for efficient numerical computation by van der Walt et al. Here we discuss
only some commonly encountered tricks to make code faster.
Vectorizing for loops
Find tricks to avoid for loops using numpy arrays. For this, masks and indices arrays can be useful.
Broadcasting
Use broadcasting (page 59) to do operations on arrays as small as possible before combining them.
In place operations
In [1]: a = np.zeros(1e7)
note: we need global a in the timeit so that it work, as it is assigning to a, and thus considers it as a
local variable.
Be easy on the memory: use views, and not copies
Copying big arrays is as costly as making simple numerical operations on them:
In [1]: a = np.zeros(1e7)
In [3]: %timeit a + 1
10 loops, best of 3: 112 ms per loop
In [4]: c.strides
Out[4]: (80000, 8)
This is the reason why Fortran ordering or C ordering may make a big difference on operations:
In [5]: a = np.random.rand(20, 2**18)
In [8]: c = np.ascontiguousarray(a.T)
Note that copying the data to work around this effect may not be worth it:
In [10]: %timeit c = np.ascontiguousarray(a.T)
10 loops, best of 3: 106 ms per loop
Using numexpr can be useful to automatically optimize code for such effects.
Use compiled code
The last resort, once you are sure that all the high-level optimizations have been explored, is to transfer the
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,
and with a good use of the numpy support yields efficient code on numpy arrays, for instance by unrolling
loops.
Warning: For all the above: profile and time your choices. Dont base your optimization on theoretical
considerations.
If you need to profile memory usage, you could try the memory_profiler
If you need to profile down into C extensions, you could try using gperftools from Python with yep.
If you would like to track performace of your code across time, i.e. as you make new commits to your
repository, you could try: vbench
If you need some interactive visualization why not try RunSnakeRun
11.1 Introduction
212
Python Scientific lecture notes, Release 2013.1
cons: depends on actual storage scheme, (*) usually does not hold
11.1.4 Prerequisites
recent versions of
numpy
scipy
matplotlib (optional)
ipython (the enhancements come handy)
* passing a sparse matrix object to NumPy functions expecting ndarray/matrix does not work
use:
rather specialized
solving PDEs by finite differences
with an iterative solver
Examples
2: 9
1: --10------
0: 1 . 11 .
-1: 5 2 . 12
-2: . 6 3 .
-3: . . 7 4
---------8
matrix-vector multiplication
>>> vec = np.ones((4, ))
>>> vec
array([ 1., 1., 1., 1.])
>>> mtx * vec
array([ 12., 19., 9., 11.])
>>> mtx.toarray() * vec
array([[ 1., 0., 11., 0.],
[ 5., 2., 0., 12.],
[ 0., 6., 3., 0.],
[ 0., 0., 7., 4.]])
Examples
Examples
sparse matrix
shape tuple (create empty matrix)
(data, ij) tuple
very fast conversion to and from CSR/CSC formats
fast matrix * vector (sparsetools)
fast and easy item-wise operations
manipulate data array directly (fast NumPy machinery)
no slicing, no arithmetics (directly)
use:
facilitates fast conversion among sparse formats
when converting to other format (usually CSR or CSC), duplicate entries are summed together
Examples
no slicing...:
>>> mtx[2, 3]
Traceback (most recent call last):
...
TypeError: coo_matrix object ...
row oriented
three NumPy arrays: indices, indptr, data
Examples
>>> mtx.data
array([1, 2, 3, 4, 5, 6])
>>> mtx.indices
array([0, 2, 2, 0, 1, 2], dtype=int32)
>>> mtx.indptr
array([0, 2, 3, 6], dtype=int32)
column oriented
three NumPy arrays: indices, indptr, data
Examples
basically a CSR with dense sub-matrices of fixed shape instead of scalar items
block size (R, C) must evenly divide the shape of the matrix (M, N)
three NumPy arrays: indices, indptr, data
Examples
create empty BSR matrix with (1, 1) block size (like CSR...):
>>> mtx = sparse.bsr_matrix((3, 4), dtype=np.int8)
>>> mtx
<3x4 sparse matrix of type <type numpy.int8>
with 0 stored elements (blocksize = 1x1) in Block Sparse Row format>
>>> mtx.todense()
matrix([[0, 0, 0, 0],
[0, 0, 0, 0],
[0, 0, 0, 0]], dtype=int8)
a bug?
create using (data, ij) tuple with (1, 1) block size (like CSR...):
>>> 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])
>>> mtx = sparse.bsr_matrix((data, (row, col)), shape=(3, 3))
>>> mtx
<3x3 sparse matrix of type <type numpy.int64>
with 6 stored elements (blocksize = 1x1) in Block Sparse Row format>
>>> mtx.todense()
matrix([[1, 0, 2],
[0, 0, 3],
[4, 5, 6]])
>>> mtx.data
array([[[1]],
[[2]],
[[3]],
[[4]],
[[5]],
[[6]]])
>>> mtx.indices
array([0, 2, 2, 0, 1, 2], dtype=int32)
>>> mtx.indptr
array([0, 2, 3, 6], dtype=int32)
create using (data, indices, indptr) tuple with (2, 2) block size:
>>> indptr = np.array([0, 2, 3, 6])
>>> indices = np.array([0, 2, 2, 0, 1, 2])
>>> data = np.array([1, 2, 3, 4, 5, 6]).repeat(4).reshape(6, 2, 2)
>>> mtx = sparse.bsr_matrix((data, indices, indptr), shape=(6, 6))
>>> mtx.todense()
matrix([[1, 1, 0, 0, 2, 2],
[1, 1, 0, 0, 2, 2],
[0, 0, 0, 0, 3, 3],
[0, 0, 0, 0, 3, 3],
[4, 4, 5, 5, 6, 6],
[4, 4, 5, 5, 6, 6]])
>>> data
array([[[1, 1],
[1, 1]],
[[2, 2],
[2, 2]],
[[3, 3],
[3, 3]],
[[4, 4],
[4, 4]],
[[5, 5],
[5, 5]],
[[6, 6],
[6, 6]]])
11.2.3 Summary
Examples
both superlu and umfpack can be used (if the latter is installed) as follows:
prepare a linear system:
>>> import numpy as np
>>> from scipy import sparse
>>> mtx = sparse.spdiags([[1, 2, 3, 4, 5], [6, 5, 8, 9, 10]], [0, 1], 5, 5)
>>> mtx.todense()
matrix([[ 1, 5, 0, 0, 0],
[ 0, 2, 8, 0, 0],
[ 0, 0, 3, 9, 0],
[ 0, 0, 0, 4, 10],
[ 0, 0, 0, 0, 5]])
>>> rhs = np.array([1, 2, 3, 4, 5])
"""
Construct a 1000x1000 lil_matrix and add some values to it, convert it
to CSR format and solve A x = b for x:and solve a linear system with a
direct solver.
"""
import numpy as np
import scipy.sparse as sps
from matplotlib import pyplot as plt
from scipy.sparse.linalg.dsolve import linsolve
rand = np.random.rand
plt.clf()
plt.spy(mtx, marker=., markersize=2)
plt.show()
mtx = mtx.tocsr()
rhs = rand(1000)
x = linsolve.spsolve(mtx, rhs)
examples/direct_solve.py
Common Parameters
mandatory:
A [{sparse matrix, dense matrix, LinearOperator}] The N-by-N matrix of the linear system.
b [{array, matrix}] Right hand side of the linear system. Has shape (N,) or (N,1).
optional:
x0 [{array, matrix}] Starting guess for the solution.
tol [float] Relative tolerance to achieve before terminating.
maxiter [integer] Maximum number of iterations. Iteration will stop after maxiter steps even if the specified
tolerance has not been achieved.
M [{sparse matrix, dense matrix, LinearOperator}] Preconditioner for A. The preconditioner should ap-
proximate the inverse of A. Effective preconditioning dramatically improves the rate of convergence,
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
xk is the current solution vector.
LinearOperator Class
problem specific
often hard to develop
if not sure, try ILU
available in dsolve as spilu()
arpack * a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems
lobpcg (Locally Optimal Block Preconditioned Conjugate Gradient Method) * works very well in com-
bination with PyAMG * example by Nathan Bell:
"""
Compute eigenvectors and eigenvalues using a preconditioned eigensolver
import scipy
from scipy.sparse.linalg import lobpcg
N = 100
K = 9
A = poisson((N,N), format=csr)
# preconditioner based on ml
M = ml.aspreconditioner()
pylab.figure(figsize=(9,9))
for i in range(K):
pylab.subplot(3, 3, i+1)
pylab.title(Eigenvector %d % i)
pylab.pcolor(V[:,i].reshape(N,N))
pylab.axis(equal)
pylab.axis(off)
pylab.show()
examples/pyamg_with_lobpcg.py
example by Nils Wagner:
examples/lobpcg_sakurai.py
output:
$ python examples/lobpcg_sakurai.py
Results by LOBPCG for n=2500
Exact eigenvalues
PyAMG
algebraic multigrid solvers
http://code.google.com/p/pyamg
Pysparse
own sparse matrix classes
matrix and eigenvalue problem solvers
http://pysparse.sourceforge.net/
232
Python Scientific lecture notes, Release 2013.1
Chapters contents
Opening and writing to image files (page 233)
Displaying images (page 234)
Basic manipulations (page 236)
Statistical information (page 236)
Geometrical transformations (page 237)
Image filtering (page 238)
Blurring/smoothing (page 238)
Sharpening (page 238)
Denoising (page 239)
Mathematical morphology (page 240)
Feature extraction (page 243)
Edge detection (page 243)
Segmentation (page 243)
Measuring objects properties: ndimage.measurements (page 246)
<type numpy.ndarray>
>>> lena.shape, lena.dtype
((512, 512), dtype(uint8))
Need to know the shape and dtype of the image (how to separate data bytes).
For large data, use np.memmap for memory mapping:
>>> lena_memmap = np.memmap(lena.raw, dtype=np.int64, shape=(512, 512))
(data are read from the file, and not loaded into memory)
Working on a list of image files
>>> for i in range(10):
... im = np.random.random_integers(0, 255, 10000).reshape((100, 100))
... misc.imsave(random_%02d.png % i, im)
>>> from glob import glob
>>> filelist = glob(random*.png)
>>> filelist.sort()
Other packages sometimes use graphical toolkits for visualization (GTK, Qt):
np.histogram
Exercise 1
Open as an array the scikit-image logo (http://scikit-image.org/_static/scikits_image_logo.png),
or an image that you have on your computer.
Crop a meaningful part of the image, for example the python circle in the logo.
Display the image array using matlplotlib. Change the interpolation method and zoom to see the
difference.
Transform your image to greyscale
Increase the contrast of the image by changing its minimum and maximum values. Optional: use
scipy.stats.scoreatpercentile (read the docstring!) to saturate 5% of the darkest pixels
and 5% of the lightest pixels.
Save the array to two different file formats (png, jpg, tiff)
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.
12.4.1 Blurring/smoothing
Uniform filter
>>> local_mean = ndimage.uniform_filter(lena, size=11)
12.4.2 Sharpening
12.4.3 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:
>>> gauss_denoised = ndimage.gaussian_filter(noisy, 2)
Total-variation (TV) denoising. Find a new image so that the total-variation of the image (integral of the norm
L1 of the gradient) is minimized, while being close to the measured image:
>>> from skimage.filter import tv_denoise
>>> tv_denoised = tv_denoise(noisy, weight=10)
>>> # More denoising (to the expense of fidelity to data)
>>> tv_denoised = tv_denoise(noisy, weight=50)
Exercise 2: denoising
Create a binary image (of 0s and 1s) with several objects (circles, ellipses, squares, or random shapes).
Add some noise (e.g., 20% of noise)
Try three different denoising methods for denoising the image: gaussian filtering, median filtering,
and total variation denoising.
Compare the histograms of the three different denoised images. Which one is the closest to the his-
togram of the original (noise-free) image?
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)
array([[0, 1, 0],
[1, 1, 1],
[0, 1, 0]])
Erosion = minimum filter. Replace the value of a pixel by the minimal value covered by the structuring element.:
>>> a = np.zeros((7,7), dtype=np.int)
>>> a[1:6, 2:5] = 1
>>> a
array([[0, 0, 0, 0, 0, 0, 0],
[0, 0, 1, 1, 1, 0, 0],
[0, 0, 1, 1, 1, 0, 0],
[0, 0, 1, 1, 1, 0, 0],
[0, 0, 1, 1, 1, 0, 0],
[0, 0, 1, 1, 1, 0, 0],
[0, 0, 0, 0, 0, 0, 0]])
>>> ndimage.binary_erosion(a).astype(a.dtype)
array([[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 1, 0, 0, 0],
[0, 0, 0, 1, 0, 0, 0],
[0, 0, 0, 1, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0]])
>>> #Erosion removes objects smaller than the structure
>>> ndimage.binary_erosion(a, structure=np.ones((5,5))).astype(a.dtype)
array([[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0]])
Synthetic data:
>>> im = np.zeros((256, 256))
>>> im[64:-64, 64:-64] = 1
>>>
>>> im = ndimage.rotate(im, 15, mode=constant)
>>> im = ndimage.gaussian_filter(im, 8)
Canny filter
>>> from skimage.filter import canny
>>> im += 0.1*np.random.random(im.shape)
>>> edges = canny(im, 1, 0.4, 0.2) # not enough smoothing
>>> edges = canny(im, 3, 0.3, 0.2) # better parameters
12.5.2 Segmentation
>>> classif.means
array([[ 0.9353155 ],
[-0.02966039]])
>>> np.sqrt(classif.covarsi).ravel()
array([ 0.35074631, 0.28225327])
>>> classif.weights
array([ 0.40989799, 0.59010201])
>>> threshold = np.mean(classif.means)
>>> binary_img = img > threshold
Exercise
Check that reconstruction operations (erosion + propagation) produce a better result than opening/closing:
>>> eroded_img = ndimage.binary_erosion(binary_img)
>>> reconstruct_img = ndimage.binary_propagation(eroded_img, mask=binary_img)
>>> tmp = np.logical_not(reconstruct_img)
>>> eroded_tmp = ndimage.binary_erosion(tmp)
>>> reconstruct_final = np.logical_not(ndimage.binary_propagation(eroded_tmp, mask=tmp))
>>> np.abs(mask - close_img).mean()
0.014678955078125
>>> np.abs(mask - reconstruct_final).mean()
0.0042572021484375
Exercise
Check how a first denoising step (median filter, total variation) modifies the histogram, and check that the
resulting histogram-based segmentation is more accurate.
>>> l = 100
>>> x, y = np.indices((l, l))
>>> # 4 circles
>>> img = circle1 + circle2 + circle3 + circle4
>>> mask = img.astype(bool)
>>> img = img.astype(float)
Synthetic data:
>>> n = 10
>>> l = 256
>>> im = np.zeros((l, l))
>>> points = l*np.random.random((2, n**2))
>>> im[(points[0]).astype(np.int), (points[1]).astype(np.int)] = 1
>>> im = ndimage.gaussian_filter(im, sigma=l/(4.*n))
>>> mask = im > im.mean()
>>> plt.imshow(roi)
<matplotlib.image.AxesImage object at ...>
When regions are regular blocks, it is more efficient to use stride tricks (Example: fake dimensions with strides
(page 170)).
Exercise: segmentation
Load as an array the coins image from skimage (skimage.data.coins) or from
https://github.com/scikits-image/scikits-image/raw/master/skimage/data/coins.png
Display the histogram and try to perform histogram segmentation.
Try two segmentation methods: an edge-based method using skimage.filter.canny
and scipy.ndimage.binary_fill_holes and a region-based method using
skimage.morphology.watershed and skimage.filter.sobel to compute an ele-
vation map.
Compute the sizes of the coins.
Other measures
Correlation function, Fourier/wavelet spectrum, etc.
One example with mathematical morphology: granulometry (http://en.wikipedia.org/wiki/Granulometry_%28morphology%29)
>>> def disk_structure(n):
... struct = np.zeros((2 * n + 1, 2 * n + 1))
... x, y = np.indices((2 * n + 1, 2 * n + 1))
... mask = (x - n)**2 + (y - n)**2 <= n**2
... struct[mask] = 1
... return struct.astype(np.bool)
...
>>>
>>> def granulometry(data, sizes=None):
... s = max(data.shape)
... if sizes == None:
... sizes = range(1, s/2, 2)
... granulo = [ndimage.binary_opening(data, \
... structure=disk_structure(n)).sum() for n in sizes]
... return granulo
...
>>>
>>> np.random.seed(1)
>>> n = 10
>>> l = 256
>>> im = np.zeros((l, l))
>>> points = l*np.random.random((2, n**2))
>>> im[(points[0]).astype(np.int), (points[1]).astype(np.int)] = 1
>>> im = ndimage.gaussian_filter(im, sigma=l/(4.*n))
>>>
>>> mask = im > im.mean()
>>>
>>> granulo = granulometry(mask, sizes=np.arange(2, 19, 4))
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.
252
Python Scientific lecture notes, Release 2013.1
Chapters contents
Knowing your problem (page 253)
Convex versus non-convex optimization (page 254)
Smooth and non-smooth problems (page 254)
Noisy versus exact cost functions (page 255)
Constraints (page 255)
A review of the different optimizers (page 255)
Getting started: 1D optimization (page 255)
Gradient based methods (page 256)
* Some intuitions about gradient descent (page 256)
* Conjugate gradient descent (page 257)
Newton and quasi-newton methods (page 258)
* Newton methods: using the Hessian (2nd differential) (page 258)
* Quasi-Newton methods: approximating the Hessian on the fly (page 260)
Gradient-less methods (page 260)
* A shooting method: the Powell algorithm (page 260)
* Simplex method: the Nelder-Mead (page 261)
Global optimizers (page 262)
* Brute force: a grid search (page 262)
* Simulated annealing (page 262)
Practical guide to optimization with scipy (page 262)
Choosing a method (page 262)
Making your optimizer faster (page 263)
Computing gradients (page 263)
Synthetic exercices (page 264)
Special case: non-linear least-squares (page 264)
Minimizing the norm of a vector function (page 264)
Curve fitting (page 265)
Optimization with constraints (page 266)
Box bounds (page 266)
General constraints (page 266)
Not all optimization problems are equal. Knowing your problem enables you to choose the right tool.
Optimizing convex functions is easy. Optimizing non-convex functions can be very hard.
Note: A convex function provably has only one minimum, no local minimums
Noisy gradients
Many optimization methods rely on gradients of the objective function. If the gradient function is not given,
they are computed numerically, which induces errors. In such situation, even if the objective function is not
noisy,
13.1.4 Constraints
Note: Brents method can be used for optimization constraint to an intervale using
scipy.optimize.fminbound()
Also, it clearly can be advantageous to take bigger steps. This is done in gradient descent code using a line search.
A well-conditionned quadratic
function.
An ill-conditionned quadratic
function.
An ill-conditionned
non-quadratic function.
An ill-conditionned very
non-quadratic function.
The more a function looks like a quadratic function (elliptic iso-curves), the easier it is to optimize.
The gradient descent algorithms above are toys not to be used on real problems.
As can be seen from the above experiments, one of the problems of the simple gradient descent algorithms, is that
it tends to oscillate across a valley, each time following the direction of the gradient, that makes it cross the valley.
The conjugate gradient solves this problem by adding a friction term: each step depends on the two last values of
the gradient and sharp turns are reduced.
An ill-conditionned
non-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():
>>> def f(x): # The rosenbrock 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
them the gradient:
>>> 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
array([ 0.99999199, 0.99997536])
Note that the function has only been evaluated 30 times, compared to 120 without the gradient.
Newton methods use a local quadratic approximation to compute the jump direction. For this purpose, they rely
on the 2 first derivative of the function: the gradient and the Hessian.
Note that compared to a conjugate gradient (above), Newtons method has required less function evaluations, but
more gradient evaluations, as it uses it to approximate the Hessian. Lets compute the Hessian and pass it to the
algorithm:
>>> def hessian(x): # Computed with sympy
... return np.array(((1 - 4*x[1] + 12*x[0]**2, -4*x[0]), (-4*x[0], 2)))
>>> optimize.fmin_ncg(f, [2, 2], fprime=fprime, fhess=hessian)
Optimization terminated successfully.
Current function value: 0.000000
Iterations: 10
Function evaluations: 12
Gradient evaluations: 10
Hessian evaluations: 10
array([ 1., 1.])
Note: At very high-dimension, the inversion of the Hessian can be costly and unstable (large scale > 250).
Note: Newton optimizers should not to be confused with Newtons root finding method, based on the same
principles, scipy.optimize.newton().
BFGS: BFGS (Broyden-Fletcher-Goldfarb-Shanno algorithm) refines at each step an approximation of the Hes-
sian.
L-BFGS: Limited-memory BFGS Sits between BFGS and conjugate gradient: in very high dimensions (> 250)
the Hessian matrix is too costly to compute and invert. L-BFGS keeps a low-rank version. In addition, the scipy
version, scipy.optimize.fmin_l_bfgs_b(), includes box bounds:
>>> def f(x): # The rosenbrock function
... return .5*(1 - x[0])**2 + (x[1] - x[0]**2)**2
>>> 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_l_bfgs_b(f, [2, 2], fprime=fprime)
(array([ 1.00000005, 1.00000009]), 1.4417677473011859e-15, {warnflag: 0, task: CONVERGENCE:
Note: If you do not specify the gradient to the L-BFGS solver, you need to add approx_grad=1
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
bracket the minimum.
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:
An ill-conditionned very
non-quadratic function:
In scipy, scipy.optimize.fmin() implements the Nelder-Mead approach:
>>> def f(x): # The rosenbrock function
... return .5*(1 - x[0])**2 + (x[1] - x[0]**2)**2
>>> optimize.fmin(f, [2, 2])
Optimization terminated successfully.
Current function value: 0.000000
Iterations: 46
Function evaluations: 91
array([ 0.99998568, 0.99996682])
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.
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:
>>> 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)))
array([ 1.00001462, 1.00001547])
Simulated annealing
Simulated annealing does random jumps around the starting point to explore its vicinity, progressively narrowing
the jumps around the minimum points it finds. Its output depends on the random number generator. In scipy, it is
implemented in scipy.optimize.anneal():
>>> def f(x): # The rosenbrock function
... return .5*(1 - x[0])**2 + (x[1] - x[0]**2)**2
>>> optimize.anneal(f, [2, 2])
Warning: Cooled to 5057.768838 at [ 30.27877642 984.84212523] but this
is not the smallest point found.
(array([ -7.70412755, 56.10583526]), 5)
Note: For function of continuous parameters as studied here, a strategy based on grid search for rough exploration
and running optimizers like the Nelder-Mead or gradient-based methods many times with different starting points
should often be preferred to heuristic methods such as simulated annealing.
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, and even more Hessians, is very tedious but worth the effort. Symbolic computation with
Sympy (page 294) may come in handy.
Warning: A very common source of optimization not converging well is human error in the computation of
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:
def f(x):
return np.sum((np.dot(K, x - 1))**2) + np.sum(x**2)**2
Time your approach. Find the fastest approach. Why is BFGS not working well?
Least square problems, minimizing the norm of a vector function, have a specific structure that can be used in the
LevenbergMarquardt algorithm implemented in scipy.optimize.leastsq().
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)))
>>> x0 = np.zeros(10)
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
Function evaluations: 144
Gradient evaluations: 12
array([ -7.38998277e-09, 1.11112265e-01, 2.22219893e-01,
3.33331914e-01, 4.44449794e-01, 5.55560493e-01,
6.66672149e-01, 7.77779758e-01, 8.88882036e-01,
1.00001026e+00])
BFGS needs more function calls, and gives a less precise result.
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().
>>> optimize.curve_fit(f, x, y)
(array([ 1.51854577, 0.92665541]),
array([[ 0.00037994, -0.00056796],
[-0.00056796, 0.00123978]]))
Exercise
Do the same with omega = 3. What is the difficulty?
Box bounds correspond to limiting each of the individual parameters of the optimization. Note that some
problems that are not originally written as box bounds can be rewritten as such be a change of variables.
straints:
>>> def f(x):
... return np.sqrt((x[0] - 3)**2 + (x[1] - 2)**2)
Warning: The above problem is known as the Lasso problem in statistics, and there exists very efficient
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.
Traits
Intended Audience
Intermediate to advanced Python programmers
Requirements
Python 2.6 or 2.7 (www.python.org)
Either wxPython (http://www.wxpython.org/) or PyQt (http://www.riverbankcomputing.co.uk/software/pyqt/intro)
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
(http://www.enthought.com/products/epd.php)
Tutorial content
Introduction (page 269)
Example (page 269)
What are Traits (page 270)
Initialisation (page 271)
Validation (page 271)
Documentation (page 272)
Visualisation (page 273)
Deferral (page 274)
Notification (page 279)
Some more advanced traits (page 282)
References (page 285)
268
Python Scientific lecture notes, Release 2013.1
14.1 Introduction
The Enthought Tool Suite enable the construction of sophisticated application frameworks for data analysis, 2D
plotting and 3D visualization. These powerful, reusable components are released under liberal BSD-style licenses.
The main packages are:
Traits - component based approach to build our applications.
Kiva - 2D primitives supporting path based rendering, affine transforms, alpha blending and more.
Enable - object based 2D drawing canvas.
Chaco - plotting toolkit for building complex interactive 2D plots.
Mayavi - 3D visualization of scientific data based on VTK.
Envisage - application plugin framework for building scriptable and extensible applications
14.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]
Warning: The data used in this tutorial are not real and might even not have sense in the reality.
A trait is a type definition that can be used for normal Python object attributes, giving the attributes some additional
characteristics:
Standardization:
Initialization
Validation
Deferral
Notification
Visualization
Documentation
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.
The common way of creating a traits class is by extending from the HasTraits base class and defining class traits
:
from traits.api import HasTraits, Str, Float
class Reservoir(HasTraits):
name = Str
max_storage = Float
Using a traits class like that is as simple as any other Python class. Note that the trait value are passed using
keyword arguments:
reservoir = Reservoir(name=Lac de Vouglans, max_storage=605)
14.3.1 Initialisation
All the traits do have a default value that initialise the variables. For example, the basic python types do have the
following trait equivalents:
Trait Python Type Built-in Default Value
Bool Boolean False
Complex Complex number 0+0j
Float Floating point number 0.0
Int Plain integer 0
Long Long integer 0L
Str String
Unicode Unicode u
A number of other predefined trait type do exist : Array, Enum, Range, Event, Dict, List, Color, Set, Expression,
Code, Callable, Type, Tuple, etc.
Custom default values can be defined in the code:
from traits.api import HasTraits, Str, Float
class Reservoir(HasTraits):
name = Str
max_storage = Float(100)
return Undefined
14.3.2 Validation
Every trait does validation when the user tries to set its content:
reservoir = Reservoir(name=Lac de Vouglans, max_storage=605)
reservoir.max_storage = 230
---------------------------------------------------------------------------
TraitError Traceback (most recent call last)
/Users/dpinte/projects/scipy-lecture-notes/advanced/traits/<ipython-input-7-979bdff9974a> in <modu
TraitError: The max_storage trait of a Reservoir instance must be a float, but a value of 23 <
14.3.3 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
max_storage = Float(100, desc=Maximal storage [hm3])
class Reservoir(HasTraits):
name = Str
max_storage = Float(1e6, desc=Maximal storage [hm3])
max_release = Float(10, desc=Maximal release [m3/s])
head = Float(10, desc=Hydraulic head [m])
efficiency = Range(0, 1.)
if __name__ == __main__:
reservoir = Reservoir(
name = Project A,
max_storage = 30,
max_release = 100.0,
head = 60,
efficiency = 0.8
)
release = 80
print Releasing {} m3/s produces {} kWh.format(
release, reservoir.energy_production(release)
)
14.3.4 Visualisation
The Traits library is also aware of user interfaces and can pop up a default view for the Reservoir class:
reservoir1 = Reservoir()
reservoir1.edit_traits()
TraitsUI simplifies the way user interfaces are created. Every trait on a HasTraits class has a default editor that
will manage the way the trait is rendered to the screen (e.g. the Range trait is displayed as a slider, etc.).
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 traitsui.api import View
class Reservoir(HasTraits):
name = Str
max_storage = Float(1e6, desc=Maximal storage [hm3])
max_release = Float(10, desc=Maximal release [m3/s])
head = Float(10, desc=Hydraulic head [m])
efficiency = Range(0, 1.)
traits_view = View(
name, max_storage, max_release, head, efficiency,
title = Reservoir,
resizable = True,
)
if __name__ == __main__:
reservoir = Reservoir(
name = Project A,
max_storage = 30,
max_release = 100.0,
head = 60,
efficiency = 0.8
)
reservoir.configure_traits()
14.3.5 Deferral
Being able to defer the definition of a trait and its value to another object is a powerful feature of Traits.
from traits.api import HasTraits, Instance, DelegatesTo, Float, Range
class ReservoirState(HasTraits):
"""Keeps track of the reservoir state given the initial storage.
"""
reservoir = Instance(Reservoir, ())
min_storage = Float
max_storage = DelegatesTo(reservoir)
min_release = Float
max_release = DelegatesTo(reservoir)
# state attributes
storage = Range(low=min_storage, high=max_storage)
# control attributes
inflows = Float(desc=Inflows [hm3])
release = Range(low=min_release, high=max_release)
spillage = Float(desc=Spillage [hm3])
def print_state(self):
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)
print - * 79
if __name__ == __main__:
projectA = Reservoir(
name = Project A,
max_storage = 30,
max_release = 100.0,
hydraulic_head = 60,
efficiency = 0.8
)
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.
# state attributes
storage = Range(low=min_storage, high=max_storage)
# control attributes
inflows = Float(desc=Inflows [hm3])
release = Range(low=min_release, high=max_release)
spillage = Float(desc=Spillage [hm3])
def _update_storage_fired(self):
# update storage state
new_storage = self.storage - self.release + self.inflows
self.storage = min(new_storage, self.max_storage)
overflow = new_storage - self.max_storage
self.spillage = max(overflow, 0)
def print_state(self):
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)
print - * 79
if __name__ == __main__:
projectA = Reservoir(
name = Project A,
max_storage = 30,
max_release = 5.0,
hydraulic_head = 60,
efficiency = 0.8
)
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 :
_get_XXX for the getter of the XXX Property trait
_set_XXX for the setter of the XXX Property trait
from traits.api import HasTraits, Instance, DelegatesTo, Float, Range
from traits.api import Property
class ReservoirState(HasTraits):
"""Keeps track of the reservoir state given the initial storage.
# state attributes
storage = Property(depends_on=inflows, release)
# control attributes
inflows = Float(desc=Inflows [hm3])
release = Range(low=min_release, high=max_release)
spillage = Property(
desc=Spillage [hm3], depends_on=[storage, inflows, release]
)
def _get_spillage(self):
new_storage = self._storage - self.release + self.inflows
overflow = new_storage - self.max_storage
return max(overflow, 0)
def print_state(self):
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)
print - * 79
if __name__ == __main__:
projectA = Reservoir(
name = Project A,
max_storage = 30,
max_release = 5,
hydraulic_head = 60,
efficiency = 0.8
)
state.print_state()
class ReservoirState(HasTraits):
"""Keeps track of the reservoir state given the initial storage.
# state attributes
storage = Property(depends_on=inflows, release)
# control attributes
inflows = Float(desc=Inflows [hm3])
release = Range(low=min_release, high=max_release)
spillage = Property(
desc=Spillage [hm3], depends_on=[storage, inflows, release]
)
_storage = Float
def _get_spillage(self):
new_storage = self._storage - self.release + self.inflows
overflow = new_storage - self.max_storage
return max(overflow, 0)
def print_state(self):
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)
print - * 79
if __name__ == __main__:
projectA = Reservoir(
name = Project A,
max_storage = 30,
max_release = 5,
hydraulic_head = 60,
efficiency = 0.8
)
state.print_state()
state.configure_traits()
Some use cases need the delegation mechanism to be broken by the user when setting the value of the trait. The
PrototypeFrom trait implements this behaviour.
from traits.api import HasTraits, Str, Float, Range, PrototypedFrom, Instance
class Turbine(HasTraits):
turbine_type = Str
power = Float(1.0, desc=Maximal power delivered by the turbine [Mw])
class Reservoir(HasTraits):
name = Str
max_storage = Float(1e6, desc=Maximal storage [hm3])
max_release = Float(10, desc=Maximal release [m3/s])
head = Float(10, desc=Hydraulic head [m])
efficiency = Range(0, 1.)
turbine = Instance(Turbine)
installed_capacity = PrototypedFrom(turbine, power)
if __name__ == __main__:
turbine = Turbine(turbine_type=type1, power=5.0)
reservoir = Reservoir(
name = Project A,
max_storage = 30,
max_release = 100.0,
head = 60,
efficiency = 0.8,
turbine = turbine,
)
print - * 15
print updating the turbine power updates the installed capacity
turbine.power = 10
print reservoir.installed_capacity
print - * 15
print setting the installed capacity breaks the link between turbine.power
print and the installed_capacity trait
reservoir.installed_capacity = 8
print turbine.power, reservoir.installed_capacity
14.3.6 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.
"""
reservoir = Instance(Reservoir, ())
min_storage = Float
max_storage = DelegatesTo(reservoir)
min_release = Float
max_release = DelegatesTo(reservoir)
# state attributes
storage = Range(low=min_storage, high=max_storage)
# control attributes
inflows = Float(desc=Inflows [hm3])
release = Range(low=min_release, high=max_release)
spillage = Float(desc=Spillage [hm3])
def print_state(self):
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)
print - * 79
if new > 0:
print Warning, we are releasing {} hm3 of water.format(new)
if __name__ == __main__:
projectA = Reservoir(
name = Project A,
max_storage = 30,
max_release = 100.0,
hydraulic_head = 60,
efficiency = 0.8
)
In many situations, you do not know in advance what type of listeners need to be activated. Traits offers the ability
to register listeners on the fly with the dynamic listeners
from reservoir import Reservoir
from reservoir_state_property import ReservoirState
def wake_up_watchman_if_spillage(new_value):
if new_value > 0:
print Wake up watchman! Spilling {} hm3.format(new_value)
if __name__ == __main__:
projectA = Reservoir(
name = Project A,
max_storage = 30,
max_release = 100.0,
hydraulic_head = 60,
efficiency = 0.8
)
state.release = 90
state.inflows = 0
state.print_state()
The dynamic trait notification signatures are not the same as the static ones :
def wake_up_watchman(): pass
def wake_up_watchman(new): pass
def wake_up_watchman(name, new): pass
def wake_up_watchman(object, name, new): pass
def wake_up_watchman(object, name, old, new): pass
Removing a dynamic listener can be done by:
calling the remove_trait_listener method on the trait with the listener method as argument,
calling the on_trait_change method with listener method and the keyword remove=True,
deleting the instance that holds the listener.
Listeners can also be added to classes using the on_trait_change decorator:
from traits.api import HasTraits, Instance, DelegatesTo, Float, Range
from traits.api import Property, on_trait_change
class ReservoirState(HasTraits):
"""Keeps track of the reservoir state given the initial storage.
# state attributes
storage = Property(depends_on=inflows, release)
# control attributes
inflows = Float(desc=Inflows [hm3])
release = Range(low=min_release, high=max_release)
spillage = Property(
desc=Spillage [hm3], depends_on=[storage, inflows, release]
)
def _get_spillage(self):
new_storage = self._storage - self.release + self.inflows
overflow = new_storage - self.max_storage
return max(overflow, 0)
@on_trait_change(storage)
def print_state(self):
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)
print - * 79
if __name__ == __main__:
projectA = Reservoir(
name = Project A,
max_storage = 30,
max_release = 5,
hydraulic_head = 60,
efficiency = 0.8
)
The patterns supported by the on_trait_change method and decorator are powerful. The reader should look at the
docstring of HasTraits.on_trait_change for the details.
The following example demonstrate the usage of the Enum and List traits :
from traits.api import HasTraits, Str, Float, Range, Enum, List
from traitsui.api import View, Item
class IrrigationArea(HasTraits):
name = Str
surface = Float(desc=Surface [ha])
crop = Enum(Alfalfa, Wheat, Cotton)
class Reservoir(HasTraits):
name = Str
max_storage = Float(1e6, desc=Maximal storage [hm3])
max_release = Float(10, desc=Maximal release [m3/s])
traits_view = View(
Item(name),
Item(max_storage),
Item(max_release),
Item(head),
Item(efficiency),
Item(irrigated_areas),
resizable = True
)
if __name__ == __main__:
upper_block = IrrigationArea(name=Section C, surface=2000, crop=Wheat)
reservoir = Reservoir(
name=Project A,
max_storage=30,
max_release=100.0,
head=60,
efficiency=0.8,
irrigated_areas=[upper_block]
)
release = 80
print Releasing {} m3/s produces {} kWh.format(
release, reservoir.energy_production(release)
)
Trait listeners can be used to listen to changes in the content of the list to e.g. keep track of the total crop surface
on linked to a given reservoir.
from traits.api import HasTraits, Str, Float, Range, Enum, List, Property
from traitsui.api import View, Item
class IrrigationArea(HasTraits):
name = Str
surface = Float(desc=Surface [ha])
crop = Enum(Alfalfa, Wheat, Cotton)
class Reservoir(HasTraits):
name = Str
max_storage = Float(1e6, desc=Maximal storage [hm3])
max_release = Float(10, desc=Maximal release [m3/s])
head = Float(10, desc=Hydraulic head [m])
efficiency = Range(0, 1.)
irrigated_areas = List(IrrigationArea)
total_crop_surface = Property(depends_on=irrigated_areas.surface)
def _get_total_crop_surface(self):
return sum([iarea.surface for iarea in self.irrigated_areas])
traits_view = View(
Item(name),
Item(max_storage),
Item(max_release),
Item(head),
Item(efficiency),
Item(irrigated_areas),
Item(total_crop_surface),
resizable = True
)
if __name__ == __main__:
upper_block = IrrigationArea(name=Section C, surface=2000, crop=Wheat)
reservoir = Reservoir(
name=Project A,
max_storage=30,
max_release=100.0,
head=60,
efficiency=0.8,
irrigated_areas=[upper_block],
)
release = 80
print Releasing {} m3/s produces {} kWh.format(
release, reservoir.energy_production(release)
)
The next example shows how the Array trait can be used to feed a specialised TraitsUI Item, the ChacoPlotItem:
import numpy as np
class ReservoirEvolution(HasTraits):
reservoir = Instance(Reservoir)
name = DelegatesTo(reservoir)
initial_stock = Float
stock = Property(depends_on=inflows, releases, initial_stock)
month = Property(depends_on=stock)
def _get_month(self):
return np.arange(self.stock.size)
if __name__ == __main__:
reservoir = Reservoir(
name = Project A,
max_storage = 30,
max_release = 100.0,
head = 60,
efficiency = 0.8
)
initial_stock = 10.
inflows_ts = np.array([6., 6, 4, 4, 1, 2, 0, 0, 3, 1, 5, 3])
releases_ts = np.array([4., 5, 3, 5, 3, 5, 5, 3, 2, 1, 3, 3])
view = ReservoirEvolution(
reservoir = reservoir,
inflows = inflows_ts,
releases = releases_ts
)
view.configure_traits()
14.4 References
Chapters contents
Mlab: the scripting interface (page 287)
3D plotting functions (page 288)
* Points (page 288)
* Lines (page 288)
* Elevation surface (page 288)
* Arbitrary regular mesh (page 289)
* Volumetric data (page 289)
Figures and decorations (page 290)
* Figure management (page 290)
* Changing plot properties (page 290)
* Decorations (page 292)
Interactive work (page 293)
The pipeline dialog (page 293)
The script recording button (page 293)
The mayavi.mlab module provides simple plotting functions to apply to numpy arrays. Try them using in
IPython, by starting IPython with the switch --gui=wx.
287
Python Scientific lecture notes, Release 2013.1
Points
Lines
Elevation surface
mlab.clf()
x, y = np.mgrid[-10:10:100j, -10:10:100j]
r = np.sqrt(x**2 + y**2)
z = np.sin(r)/r
mlab.surf(z, warp_scale=auto)
mlab.clf()
phi, theta = np.mgrid[0:np.pi:11j, 0:2*np.pi:11j]
x = np.sin(phi) * np.cos(theta)
y = np.sin(phi) * np.sin(theta)
z = np.cos(phi)
mlab.mesh(x, y, z)
mlab.mesh(x, y, z, representation=wireframe,
color=(0, 0, 0))
Note: A surface is defined by points connected to form triangles or polygones. In mlab.surf and mlab.mesh, the
connectivity is implicity given by the layout of the arrays. See also mlab.triangular_mesh.
Our data is often more than points and values: it needs some connectivity information
Volumetric data
mlab.clf()
x, y, z = np.mgrid[-5:5:64j, -5:5:64j, -5:5:64j]
values = x*x*0.5 + y*y + z*z*2.0
mlab.contour3d(values)
This function works with a regular orthogonal grid: the value array is a 3D array that gives the shape of the
grid.
Figure management
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.
Example:
In [1]: import numpy as np
In [3]: x = r*np.cos(theta)
In [4]: y = r*np.sin(theta)
In [5]: z = np.sin(r)/r
Decorations
Different items can be added to the figure to carry extra information, such as a colorbar or a title.
In [9]: mlab.colorbar(Out[7], orientation=vertical)
Out[9]: <tvtk_classes.scalar_bar_actor.ScalarBarActor object at 0xd897f8c>
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>
Warning: extent: If we specified extents for a plotting object, mlab.outline and mlab.axes dont get them
by default.
mlab_scripting_interface.rst interaction.rst
The quickest way to create beautiful visualization with Mayavi is probably to interactivly tweak the various set-
tings.
Click on the Mayavi button in the scene, and you can control properties of objects with dialogs.
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.
Objectives
1. Evaluate expressions with arbitrary precision.
2. Perform algebraic manipulations on symbolic expressions.
3. Perform basic calculus tasks (limits, differentiation and integration) with symbolic expressions.
4. Solve polynomial and transcendental equations.
5. Solve some differential equations.
What is SymPy? SymPy is a Python library for symbolic mathematics. It aims become a full featured computer
algebra system that can compete directly with commercial alternatives (Mathematica, Maple) while keeping the
code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python
and does not require any external libraries.
Sympy documentation and packages for installation can be found on http://sympy.org/
294
Python Scientific lecture notes, Release 2013.1
Chapters contents
First Steps with SymPy (page 295)
Using SymPy as a calculator (page 295)
Exercises (page 296)
Symbols (page 296)
Algebraic manipulations (page 296)
Expand (page 296)
Simplify (page 296)
Exercises (page 297)
Calculus (page 297)
Limits (page 297)
Differentiation (page 297)
Series expansion (page 298)
Exercises (page 298)
Integration (page 298)
Exercises (page 298)
Equation solving (page 298)
Exercises (page 299)
Linear Algebra (page 299)
Matrices (page 299)
Differential Equations (page 300)
Exercises (page 300)
>>> a
1/2
>>> a*2
1
SymPy uses mpmath in the background, which makes it possible to perform computations using arbitrary-
precision arithmetic. That way, some special constants, like e, pi, oo (Infinity), are treated as symbols and can be
evaluated with arbitrary precision:
>>> pi**2
pi**2
>>> pi.evalf()
3.14159265358979
>>> (pi+exp(1)).evalf()
5.85987448204884
16.1.2 Exercises
1. Calculate 2 with 100 decimals.
2. Calculate 1/2 + 1/3 in rational arithmetic.
16.1.3 Symbols
In contrast to other Computer Algebra Systems, in SymPy you have to declare symbolic variables explicitly:
>>> from sympy import *
>>> x = Symbol(x)
>>> y = Symbol(y)
>>> (x+y)**2
(x + y)**2
Symbols can now be manipulated using some of python operators: +, -, *, ** (arithmetic), &, |, ~ , >>, <<
(boolean).
SymPy is capable of performing powerful algebraic manipulations. Well take a look into some of the most
frequently used: expand and simplify.
16.2.1 Expand
Use this to expand an algebraic expression. It will try to denest powers and multiplications:
In [23]: expand((x+y)**3)
Out[23]: 3*x*y**2 + 3*y*x**2 + x**3 + y**3
16.2.2 Simplify
Use simplify if you would like to transform an expression into a simpler form:
In [19]: simplify((x+x*y)/x)
Out[19]: 1 + y
Simplification is a somewhat vague term, and more precises alternatives to simplify exists: powsimp (simplifica-
tion of exponents), trigsimp (for trigonometric expressions) , logcombine, radsimp, together.
16.2.3 Exercises
16.3 Calculus
16.3.1 Limits
Limits are easy to use in SymPy, they follow the syntax limit(function, variable, point), so to compute the limit of
f(x) as x -> 0, you would issue limit(f, x, 0):
>>> limit(sin(x)/x, x, 0)
1
>>> limit(x**x, x, 0)
1
16.3.2 Differentiation
You can differentiate any SymPy expression using diff(func, var). Examples:
>>> diff(sin(x), x)
cos(x)
>>> diff(sin(2*x), x)
2*cos(2*x)
>>> diff(tan(x), x)
1 + tan(x)**2
>>> diff(sin(2*x), x, 2)
-4*sin(2*x)
>>> diff(sin(2*x), x, 3)
-8*cos(2*x)
SymPy also knows how to compute the Taylor series of an expression at a point. Use series(expr, var):
>>> series(cos(x), x)
1 - x**2/2 + x**4/24 + O(x**6)
>>> series(1/cos(x), x)
1 + x**2/2 + 5*x**4/24 + O(x**6)
16.3.4 Exercises
16.3.5 Integration
SymPy has support for indefinite and definite integration of transcendental elementary and special functions via
integrate() facility, which uses powerful extended Risch-Norman algorithm and some heuristics and pattern
matching. You can integrate elementary functions:
>>> integrate(6*x**5, x)
x**6
>>> integrate(sin(x), x)
-cos(x)
>>> integrate(log(x), x)
-x + x*log(x)
>>> integrate(2*x + sinh(x), x)
cosh(x) + x**2
16.3.6 Exercises
As you can see it takes as first argument an expression that is supposed to be equaled to 0. It is able to solve a large
part of polynomial equations, and is also capable of solving multiple equations with respect to multiple variables
giving a tuple as second argument:
In [8]: solve([x + 5*y - 2, -3*x + 6*y - 15], [x, y])
Out[8]: {y: 1, x: -3}
Another alternative in the case of polynomial equations is factor. factor returns the polynomial factorized
into irreducible terms, and is capable of computing the factorization over various domains:
In [10]: f = x**4 - 3*x**2 + 1
In [11]: factor(f)
Out[11]: (1 + x - x**2)*(1 - x - x**2)
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:
In [13]: satisfiable(x & y)
Out[13]: {x: True, y: True}
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
its arguments can make the expression True, it will return False:
In [14]: satisfiable(x & ~x)
Out[14]: False
16.4.1 Exercises
16.5.1 Matrices
>>> A**2
[1 + x*y, 2*x]
[ 2*y, 1 + x*y]
SymPy is capable of solving (some) Ordinary Differential Equations. sympy.ode.dsolve works like this:
In [4]: f(x).diff(x, x) + f(x)
Out[4]:
2
d
-----(f(x)) + f(x)
dx dx
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
resolve it as a separable equation.
In [6]: dsolve(sin(x)*cos(f(x)) + cos(x)*sin(f(x))*f(x).diff(x), f(x), hint=separable) Out[6]: -log(1 -
sin(f(x))**2)/2 == C1 + log(1 - sin(x)**2)/2
16.5.3 Exercises
Prerequisites
Numpy, Scipy
IPython
matplotlib
scikit-learn (http://scikit-learn.org)
Chapters contents
Loading an example dataset (page 302)
Learning and Predicting (page 303)
Classification (page 303)
k-Nearest neighbors classifier (page 303)
Support vector machines (SVMs) for classification (page 304)
Clustering: grouping observations together (page 306)
K-means clustering (page 306)
Dimension Reduction with Principal Component Analysis (page 307)
Putting it all together: face recognition (page 308)
Linear model: from regression to sparsity (page 310)
Sparse models (page 310)
Model selection: choosing estimators and their parameters (page 311)
Grid-search and cross-validated estimators (page 311)
Warning: As of version 0.9 (released in September 2011), the import path for scikit-learn has changed from
scikits.learn to sklearn
301
Python Scientific lecture notes, Release 2013.1
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.
We have 150 observations of the iris flower specifying some measurements: sepal length, sepal width, petal length
and petal width together with its subtype: Iris setosa, Iris versicolor, Iris virginica.
To load the dataset into a Python object:
>>> 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])
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)
<matplotlib.image.AxesImage object at ...>
To use this dataset with the scikit, we transform each 8x8 image into a vector of length 64
>>> data = digits.images.reshape((digits.images.shape[0], -1))
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
>>> clf = svm.LinearSVC()
>>> clf.fit(iris.data, iris.target) # learn from the data
LinearSVC(...)
Once we have learned from the data, we can use our model to predict the most likely outcome on unseen data:
>>> clf.predict([[ 5.0, 3.6, 1.3, 0.25]])
array([0], dtype=int32)
Note: We can access the parameters of the model via its attributes ending with an underscore:
>>> clf.coef_
array([[ 0...]])
17.2 Classification
The simplest possible classifier is the nearest neighbor: given a new observation, take the label of the training
samples closest to it in n-dimensional space, where n is the number of features in each sample.
The k-nearest neighbors classifier internally uses an algorithm based on ball trees to represent the samples it is
trained on.
KNN (k-nearest neighbors) classification example:
>>> # Create and fit a nearest-neighbor classifier
>>> from sklearn import neighbors
>>> knn = neighbors.KNeighborsClassifier()
>>> knn.fit(iris.data, iris.target)
KNeighborsClassifier(...)
>>> knn.predict([[0.1, 0.2, 0.3, 0.4]])
array([0])
SVMs try to construct a hyperplane maximizing the margin between the two classes. It selects a subset of the
input, called the support vectors, which are the observations closest to the separating hyperplane.
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.
Using kernels
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:
Linear kernel Polynomial kernel RBF kernel (Radial Basis Func-
tion)
Exercise
Which of the kernels noted above has a better prediction performance on the digits dataset?
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.
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(k=3)
>>> k_means.fit(iris.data)
KMeans(copy_x=True, init=k-means++, k=3, ...
>>> print k_means.labels_[::10]
[1 1 1 1 1 0 0 0 0 0 2 2 2 2 2]
>>> print iris.target[::10]
[0 0 0 0 0 1 1 1 1 1 2 2 2 2 2]
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.
>>> pca.fit(iris.data)
PCA(copy=True, n_components=2, whiten=False)
>>> X = pca.transform(iris.data)
PCA is not just useful for visualization of high dimensional datasets. It can also be used as a preprocessing step
to help speed up supervised methods that are not efficient with high dimensions.
An example showcasing face recognition using Principal Component Analysis for dimension reduction and Sup-
port Vector Machines for classification.
"""
Stripped-down version of the face recognition example by Olivier Grisel
http://scikit-learn.org/dev/auto_examples/applications/face_recognition.html
# ..
# .. 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 = decomposition.RandomizedPCA(n_components=150, whiten=True)
pca.fit(X_train)
X_train_pca = pca.transform(X_train)
X_test_pca = pca.transform(X_test)
# ..
# .. classification ..
clf = svm.SVC(C=5., gamma=0.001)
clf.fit(X_train_pca, y_train)
# ..
# .. predict on new images ..
for i in range(10):
print lfw_people.target_names[clf.predict(X_test_pca[i])[0]]
_ = pl.imshow(X_test[i].reshape(50, 37), cmap=pl.cm.gray)
_ = raw_input()
Diabetes dataset
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:
>>> diabetes = datasets.load_diabetes()
>>> diabetes_X_train = diabetes.data[:-20]
>>> diabetes_X_test = diabetes.data[-20:]
>>> diabetes_y_train = diabetes.target[:-20]
>>> diabetes_y_test = diabetes.target[-20:]
The task at hand is to predict disease prediction from physiological variables.
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
are called sparse method, and sparsity can be seen as an application of Occams razor: prefer simpler models to
complex ones.
>>> from sklearn import linear_model
>>> regr = linear_model.Lasso(alpha=.3)
>>> regr.fit(diabetes_X_train, diabetes_y_train)
Lasso(...)
>>> regr.coef_ # very sparse coefficients
array([ 0. , -0. , 497.34075682, 199.17441034,
-0. , -0. , -118.89291545, 0. ,
430.9379595 , 0. ])
>>> regr.score(diabetes_X_test, diabetes_y_test)
0.5510835453...
Grid-search
The scikit-learn provides an object that, given data, computes the score during the fit of an estimator on a parameter
grid and chooses the parameters to maximize the cross-validation score. This object takes an estimator during the
construction and exposes an estimator API:
>>> from sklearn import svm, grid_search
>>> gammas = np.logspace(-6, -1, 10)
>>> svc = svm.SVC()
>>> clf = grid_search.GridSearchCV(estimator=svc, param_grid=dict(gamma=gammas),
... n_jobs=-1)
>>> clf.fit(digits.data[:1000], digits.target[:1000])
GridSearchCV(cv=None,
estimator=SVC(C=1.0, ...
>>> clf.best_score
0.98899798001594419
>>> clf.best_estimator.gamma
0.00059948425031894088
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.
Cross-validated estimators
Cross-validation to set a parameter can be done more efficiently on an algorithm-by-algorithm basis. This is
why, for certain estimators, the scikit-learn exposes CV estimators, that set their parameter automatically by
cross-validation:
>>> from sklearn import linear_model, datasets
>>> lasso = linear_model.LassoCV()
>>> diabetes = datasets.load_diabetes()
>>> X_diabetes = diabetes.data
>>> y_diabetes = diabetes.target
>>> lasso.fit(X_diabetes, y_diabetes)
LassoCV(alphas=array([ 2.14804, 2.00327, ..., 0.0023 , 0.00215]),
copy_X=True, cv=None, eps=0.001, fit_intercept=True, max_iter=1000,
n_alphas=100, normalize=False, precompute=auto, tol=0.0001,
verbose=False)
>>> # The estimator chose automatically its lambda:
>>> lasso.alpha
0.013...
These estimators are called similarly to their counterparts, with CV appended to their name.
Exercise
On the diabetes dataset, find the optimal regularization parameter alpha.
Interfacing with C
Chapters contents
Introduction (page 312)
Python-C-Api (page 313)
Ctypes (page 317)
SWIG (page 320)
Cython (page 324)
Summary (page 328)
Further Reading and References (page 328)
Exercises (page 329)
18.1 Introduction
312
Python Scientific lecture notes, Release 2013.1
18.2 Python-C-Api
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
compatibility, call any function written in C or C++.
When using the Python-C-API, one usually writes much boilerplate code, first to parse the arguments that were
given to a function, and later to construct the return type.
Advantages
Requires no additional libraries
Lots of low-level control
Entirely usable from C++
Disadvantages
May requires a substantial amount of effort
Much overhead in the code
Must be compiled
High maintenance cost
No forward compatibility across Python versions as C-Api changes
Note: The Python-C-Api example here serves mainly for didactic reasons. Many of the other techniques actually
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
be better off, using an alternative technique.
18.2.1 Example
The following C-extension module, make the cos function from the standard math library available to Python:
#include <Python.h>
#include <math.h>
/* module initialization */
PyMODINIT_FUNC
initcos_module(void)
{
(void) Py_InitModule("cos_module", CosMethods);
}
As you can see, there is much boilerplate, both to massage the arguments and return types into place and for
the module initialisation. Although some of this is amortised, as the extension grows, the boilerplate required for
each function(s) remains.
The standard python build system distutils supports compiling C-extensions from a setup.py, which is
rather convenient:
from distutils.core import setup, Extension
$ ls
cos_module.c setup.py
running build_ext
building cos_module extension
creating build
creating build/temp.linux-x86_64-2.7
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
$ ls
build/ cos_module.c cos_module.so setup.py
In [2]: cos_module?
Type: module
String Form:<module cos_module from cos_module.so>
File: /home/esc/git-working/scipy-lecture-notes/advanced/interfacing_with_c/python_c_api/cos
Docstring: <no docstring>
In [3]: dir(cos_module)
Out[3]: [__doc__, __file__, __name__, __package__, cos_func]
In [4]: cos_module.cos_func(1.0)
Out[4]: 0.5403023058681398
In [5]: cos_module.cos_func(0.0)
Out[5]: 1.0
In [6]: cos_module.cos_func(3.14159265359)
Out[7]: -1.0
Analog to the Python-C-API, Numpy, which is itself implemented as a C-extension, comes with the Numpy-C-
API. This API can be used to create and manipulate Numpy arrays from C, when writing a custom C-extension.
See also: :ref:advanced_numpy_.
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
math.h and returns a resulting new array.
/* Example of wrapping the cos function from math.h using the Numpy-C-API. */
#include <Python.h>
#include <numpy/arrayobject.h>
#include <math.h>
PyArrayObject *in_array;
PyObject *out_array;
PyArrayIterObject *in_iter;
PyArrayIterObject *out_iter;
/* module initialization */
PyMODINIT_FUNC
initcos_module_np(void)
{
(void) Py_InitModule("cos_module_np", CosMethods);
/* IMPORTANT: this must be called */
import_array();
}
To compile this we can use distutils again. However we need to be sure to include the Numpy headers by using
numpy.get_include().
from distutils.core import setup, Extension
import numpy
To convince ourselves if this does actually works, we run the following test script:
import cos_module_np
import numpy as np
import pylab
18.3 Ctypes
Ctypes is a foreign function library for Python. It provides C compatible data types, and allows calling functions
in DLLs or shared libraries. It can be used to wrap these libraries in pure Python.
Advantages
Part of the Python standard library
Does not need to be compiled
Wrapping code entirely in Python
Disadvantages
Requires code to be wrapped to be available as a shared library (roughly speaking *.dll in Windows
*.so in Linux and *.dylib in Mac OSX.)
No good support for C++
18.3.1 Example
""" Example of wrapping cos function from math.h using ctypes. """
import ctypes
from ctypes.util import find_library
def cos_func(arg):
Wrapper for cos from math.h
return libm.cos(arg)
Finding and loading the library may vary depending on your operating system, check the documentation for
details
This may be somewhat deceptive, since the math library exists in compiled form on the system already. If
you were to wrap a in-house library, you would have to compile it first, which may or may not require some
additional effort.
We may now use this, as before:
In [1]: import cos_module
In [2]: cos_module?
Type: module
String Form:<module cos_module from cos_module.py>
File: /home/esc/git-working/scipy-lecture-notes/advanced/interfacing_with_c/ctypes/cos_modul
Docstring: <no docstring>
In [3]: dir(cos_module)
Out[3]:
[__builtins__,
__doc__,
__file__,
__name__,
__package__,
cos_func,
ctypes,
find_library,
libm]
In [4]: cos_module.cos_func(1.0)
Out[4]: 0.5403023058681398
In [5]: cos_module.cos_func(0.0)
Out[5]: 1.0
In [6]: cos_module.cos_func(3.14159265359)
Out[6]: -1.0
As with the previous example, this code is somewhat robust, although the error message is not quite as helpful,
since it does not tell us what the type should be.
In [7]: cos_module.cos_func(foo)
---------------------------------------------------------------------------
ArgumentError Traceback (most recent call last)
<ipython-input-7-11bee483665d> in <module>()
----> 1 cos_module.cos_func(foo)
/home/esc/git-working/scipy-lecture-notes/advanced/interfacing_with_c/ctypes/cos_module.py in cos_
12 def cos_func(arg):
13 Wrapper for cos from math.h
---> 14 return libm.cos(arg)
Numpy contains some support for interfacing with ctypes. In particular there is support for exporting certain
attributes of a Numpy array as ctypes data-types and there are functions to convert from C arrays to Numpy arrays
and back.
For more information, consult the corresponding section in the Numpy Cookbook and the API documentation for
numpy.ndarray.ctypes and numpy.ctypeslib.
For the following example, lets consider a C function in a library that takes an input and an output array, computes
the cosine of the input array and stores the result in the output_array.
The library consists of the following header file (although this is not strictly needed for this example, we list it for
completeness):
void cos_doubles(double * in_array, double * out_array, int size);
And since the library is pure C, we cant use distutils to compile it, but must use a combination of make and
gcc:
m.PHONY : clean
libcos_doubles.so : cos_doubles.o
gcc -shared -Wl,-soname,libcos_doubles.so -o libcos_doubles.so cos_doubles.o
cos_doubles.o : cos_doubles.c
gcc -c -fPIC cos_doubles.c -o cos_doubles.o
clean :
-rm -vf libcos_doubles.so cos_doubles.o cos_doubles.pyc
We can then compile this (on Linux) into the shared library libcos_doubles.so:
$ ls
cos_doubles.c cos_doubles.h cos_doubles.py makefile test_cos_doubles.py
$ make
gcc -c -fPIC cos_doubles.c -o cos_doubles.o
gcc -shared -Wl,-soname,libcos_doubles.so -o libcos_doubles.so cos_doubles.o
$ ls
cos_doubles.c cos_doubles.o libcos_doubles.so* test_cos_doubles.py
cos_doubles.h cos_doubles.py makefile
Now we can proceed to wrap this library via ctypes with direct support for (certain kinds of) Numpy arrays:
import numpy as np
import numpy.ctypeslib as npct
from ctypes import c_int
Note the inherent limitation of contiguous single dimensional Numpy arrays, since the C functions requires
this kind of buffer.
Also note that the output array must be preallocated, for example with numpy.zeros() and the function
will write into its buffer.
Although the original signature of the cos_doubles function is ARRAY, ARRAY, int the final
cos_doubles_func takes only two Numpy arrays as arguments.
And, as before, we convince ourselves that it worked:
import numpy as np
import pylab
import cos_doubles
cos_doubles.cos_doubles_func(x, y)
pylab.plot(x, y)
pylab.show()
18.4 SWIG
SWIG, the Simplified Wrapper Interface Generator, is a software development tool that connects programs written
in C and C++ with a variety of high-level programming languages, including Python. The important thing with
SWIG is, that it can autogenerate the wrapper code for you. While this is an advantage in terms of development
time, it can also be a burden. The generated file tend to be quite large and may not be too human readable and the
multiple levels of indirection which are a result of the wrapping process, may be a bit tricky to understand.
Advantages
Can automatically wrap entire libraries given the headers
Works nicely with C++
Disadvantages
Autogenerates enormous files
Hard to debug if something goes wrong
Steep learning curve
18.4.1 Example
Lets imagine that our cos function lives in a cos_module which has been written in c and consists of the
source file cos_module.c:
#include <math.h>
And our goal is to expose the cos_func to Python. To achieve this with SWIG, we must write an interface file
which contains the instructions for SWIG.
/* Example of wrapping cos function from math.h using SWIG. */
%module cos_module
%{
/* the resulting C file should be built as a python extension */
#define SWIG_FILE_WITH_INIT
/* Includes the header in the wrapper code */
#include "cos_module.h"
%}
/* Parse the header file to generate wrappers */
%include "cos_module.h"
As you can see, not too much code is needed here. For this simple example it is enough to simply include the
header file in the interface file, to expose the function to Python. However, SWIG does allow for more fine grained
inclusion/exclusion of functions found in header files, check the documentation for details.
Generating the compiled wrappers is a two stage process:
1. Run the swig executable on the interface file to generate the files cos_module_wrap.c, which is the
source file for the autogenerated Python C-extension and cos_module.py, which is the autogenerated
pure python module.
2. Compile the cos_module_wrap.c into the _cos_module.so. Luckily, distutils knows how to
handle SWIG interface files, so that our setup.py is simply:
from distutils.core import setup, Extension
setup(ext_modules=[Extension("_cos_module",
sources=["cos_module.c", "cos_module.i"])])
$ cd advanced/interfacing_with_c/swig
$ ls
cos_module.c cos_module.h cos_module.i setup.py
$ ls
build/ cos_module.c cos_module.h cos_module.i cos_module.py _cos_module.so* cos_module_wrap.
We can now load and execute the cos_module as we have done in the previous examples:
In [1]: import cos_module
In [2]: cos_module?
Type: module
String Form:<module cos_module from cos_module.py>
File: /home/esc/git-working/scipy-lecture-notes/advanced/interfacing_with_c/swig/cos_module.
Docstring: <no docstring>
In [3]: dir(cos_module)
Out[3]:
[__builtins__,
__doc__,
__file__,
__name__,
__package__,
_cos_module,
_newclass,
_object,
_swig_getattr,
_swig_property,
_swig_repr,
_swig_setattr,
_swig_setattr_nondynamic,
cos_func]
In [4]: cos_module.cos_func(1.0)
Out[4]: 0.5403023058681398
In [5]: cos_module.cos_func(0.0)
Out[5]: 1.0
In [6]: cos_module.cos_func(3.14159265359)
Out[6]: -1.0
Again we test for robustness, and we see that we get a better error message (although, strictly speaking in Python
there is no double type):
In [7]: cos_module.cos_func(foo)
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-7-11bee483665d> in <module>()
----> 1 cos_module.cos_func(foo)
Numpy provides support for SWIG with the numpy.i file. This interface file defines various so-called typemaps
which support conversion between Numpy arrays and C-Arrays. In the following example we will take a quick
look at how such typemaps work in practice.
We have the same cos_doubles function as in the ctypes example:
void cos_doubles(double * in_array, double * out_array, int size);
#include <math.h>
%module cos_doubles
%{
/* the resulting C file should be built as a python extension */
#define SWIG_FILE_WITH_INIT
/* Includes the header in the wrapper code */
#include "cos_doubles.h"
%}
/* typemaps for the two arrays, the second will be modified in-place */
%apply (double* IN_ARRAY1, int DIM1) {(double * in_array, int size_in)}
%apply (double* INPLACE_ARRAY1, int DIM1) {(double * out_array, int size_out)}
setup(ext_modules=[Extension("_cos_doubles",
sources=["cos_doubles.c", "cos_doubles.i"],
include_dirs=[numpy.get_include()])])
cos_doubles.cos_doubles_func(x, y)
pylab.plot(x, y)
pylab.show()
18.5 Cython
Cython is both a Python-like language for writing C-extensions and an advanced compiler for this language. The
Cython language is a superset of Python, which comes with additional constructs that allow you call C functions
and annotate variables and class attributes with c types. In this sense one could also call it a Python with types.
In addition to the basic use case of wrapping native code, Cython supports an additional use-case, namely interac-
tive optimization. Basically, one starts out with a pure-Python script and incrementally adds Cython types to the
bottleneck code to optimize only those code paths that really matter.
In this sense it is quite similar to SWIG, since the code can be autogenerated but in a sense it also quite similar to
ctypes since the wrapping code can (almost) be written in Python.
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.
Advantages
Python like language for writing C-extensions
Autogenerated code
Supports incremental optimization
Includes a GNU debugger extension
Support for C++ (Since version 0.13)
Disadvantages
Must be compiled
Requires an additional library ( but only at build time, at this problem can be overcome by shipping the
generated C files)
18.5.1 Example
The main Cython code for our cos_module is contained in the file cos_module.pyx:
""" Example of wrapping cos function from math.h using Cython. """
def cos_func(arg):
return cos(arg)
Note the additional keywords such as cdef and extern. Also the cos_func is then pure Python.
Again we can use the standard distutils module, but this time we need some additional pieces from the
Cython.Distutils:
from distutils.core import setup, Extension
from Cython.Distutils import build_ext
setup(
cmdclass={build_ext: build_ext},
ext_modules=[Extension("cos_module", ["cos_module.pyx"])]
)
Compiling this:
$ cd advanced/interfacing_with_c/cython
$ ls
cos_module.pyx setup.py
$ python setup.py build_ext --inplace
running build_ext
cythoning cos_module.pyx to cos_module.c
building cos_module extension
creating build
creating build/temp.linux-x86_64-2.7
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
$ ls
build/ cos_module.c cos_module.pyx cos_module.so* setup.py
In [2]: cos_module?
Type: module
String Form:<module cos_module from cos_module.so>
File: /home/esc/git-working/scipy-lecture-notes/advanced/interfacing_with_c/cython/cos_modul
Docstring: <no docstring>
In [3]: dir(cos_module)
Out[3]:
[__builtins__,
__doc__,
__file__,
__name__,
__package__,
__test__,
cos_func]
In [4]: cos_module.cos_func(1.0)
Out[4]: 0.5403023058681398
In [5]: cos_module.cos_func(0.0)
Out[5]: 1.0
In [6]: cos_module.cos_func(3.14159265359)
Out[6]: -1.0
And, testing a little for robustness, we can see that we get good error messages:
In [7]: cos_module.cos_func(foo)
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-7-11bee483665d> in <module>()
----> 1 cos_module.cos_func(foo)
/home/esc/git-working/scipy-lecture-notes/advanced/interfacing_with_c/cython/cos_module.so in cos_
Additionally, it is worth noting that Cython ships with complete declarations for the C math library, which
simplifies the code above to become:
""" Simpler example of wrapping cos function from math.h using Cython. """
def cos_func(arg):
return cos(arg)
In this case the cimport statement is used to import the cos function.
Cython has support for Numpy via the numpy.pyx file which allows you to add the Numpy array type to your
Cython code. I.e. like specifying that variable i is of type int, you can specify that variable a is of type
numpy.ndarray with a given dtype. Also certain optimizations such as bounds checking are supported.
Look at the corresponding section in the Cython documentation. In case you want to pass Numpy arrays as C
arrays to your Cython wrapped C functions, there is a section about this in the Cython wiki.
In the following example, we will show how to wrap the familiar cos_doubles function using Cython.
void cos_doubles(double * in_array, double * out_array, int size);
#include <math.h>
setup(
cmdclass={build_ext: build_ext},
ext_modules=[Extension("cos_doubles",
sources=["_cos_doubles.pyx", "cos_doubles.c"],
include_dirs=[numpy.get_include()])],
)
As with the previous compiled Numpy examples, we need the include_dirs option.
$ ls
cos_doubles.c cos_doubles.h _cos_doubles.pyx setup.py test_cos_doubles.py
$ python setup.py build_ext -i
running build_ext
cythoning _cos_doubles.pyx to _cos_doubles.c
building cos_doubles extension
creating build
creating build/temp.linux-x86_64-2.7
gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -
In file included from /home/esc/anaconda/lib/python2.7/site-packages/numpy/core/include/numpy/ndar
from /home/esc/anaconda/lib/python2.7/site-packages/numpy/core/include/numpy/ndar
from /home/esc/anaconda/lib/python2.7/site-packages/numpy/core/include/numpy/arra
from _cos_doubles.c:253:
/home/esc/anaconda/lib/python2.7/site-packages/numpy/core/include/numpy/npy_deprecated_api.h:11:2:
/home/esc/anaconda/lib/python2.7/site-packages/numpy/core/include/numpy/__ufunc_api.h:236: warning
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_doubles.o build/temp.linux-x86_64-2.7/cos_do
$ ls
build/ _cos_doubles.c cos_doubles.c cos_doubles.h _cos_doubles.pyx cos_doubles.so* setup.py
cos_doubles.cos_doubles_func(x, y)
pylab.plot(x, y)
pylab.show()
18.6 Summary
In this section four different techniques for interfacing with native code have been presented. The table below
roughly summarizes some of the aspects of the techniques.
x Part of CPython Compiled Autogenerated Numpy Support
Python-C-Api True True False True
Ctypes True False False True
Swig False True True True
Cython False True True True
Of all three presented techniques, Cython is the most modern and advanced. In particular, the ability to optimize
code incrementally by adding types to your Python code is unique.
Gal Varoquauxs blog post about avoiding data copies provides some insight on how to handle memory
management cleverly. If you ever run into issues with large datasets, this is a reference to come back to for
some inspiration.
18.8 Exercises
Since this is a brand new section, the exercises are considered more as pointers as to what to look at next, so pick
the ones that you find more interesting. If you have good ideas for exercises, please let us know!
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.
(d) Empty array
(e) Arrays with non-double types
4. Use the %timeit IPython magic to measure the execution time of the various solutions
18.8.1 Python-C-API
1. Modify the Numpy example such that the function takes two input arguments, where the second is the
preallocated output array, making it similar to the other Numpy examples.
2. Modify the example such that the function only takes a single input array and modifies this in place.
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.
18.8.2 Ctypes
1. Modify the Numpy example such that cos_doubles_func handles the preallocation for you, thus mak-
ing it more like the Numpy-C-API example.
18.8.3 SWIG
1. Look at the code that SWIG autogenerates, how much of it do you understand?
2. Modify the Numpy example such that cos_doubles_func handles the preallocation for you, thus mak-
ing it more like the Numpy-C-API example.
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
the output array, so it may be possible to construct a Numpy array from the returned double *.)
18.8.4 Cython
1. Look at the code that Cython autogenartes. Take a closer look at some of the comments that Cython inserts.
What do you see?
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.
3. Modify the Numpy example such that cos_doubles_func handles the preallocation for you, thus mak-
ing it more like the Numpy-C-API example.
D
diff, 297, 300
differentiation, 297
dsolve, 300
E
equations
algebraic, 298
differential, 300
I
integration, 298
M
Matrix, 299
P
Python Enhancement Proposals
PEP 255, 147
PEP 3118, 183
PEP 3129, 157
PEP 318, 150, 157
PEP 342, 147
PEP 343, 157
PEP 380, 149
PEP 380#id13, 149
PEP 8, 152
S
solve, 298
331