Exemple de notebooks

Links: notebook, html, PDF, python, slides, GitHub

Exemple de matrice avec pandas.

import pandas
df = pandas.DataFrame ( [ dict(x=1.0, y=1.0), dict(x=1.5, y=2)] )
df
x y
0 1.0 1
1 1.5 2