Exemple de notebooks#

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

Exemple très simple permettant de créer un dataframe.

import numpy
from pandas import DataFrame
df = 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