Exemple de notebooks¶

Exemple de matrice avec pandas.

In [1]:
import pandas
In [2]:
df = pandas.DataFrame ( [ dict(x=1.0, y=1.0), dict(x=1.5, y=2)] )
In [3]:
df
Out[3]:
x y
0 1.0 1
1 1.5 2
In [4]: