In [2]:
import pandas as pd

pd.DataFrame({'a': [1,2,3]})
Out[2]:
a
0 1
1 2
2 3
In [3]:
print('aasdf')
aasdf
In [11]:
import seaborn as sns
sns.set_theme(style="ticks")

df = sns.load_dataset("penguins")
sns.pairplot(df, hue="species")
Out[11]:
<seaborn.axisgrid.PairGrid at 0x1161a3d30>
In [10]:
!jupyter nbconvert --to html *.ipynb --output-dir="../../../static/notebooks"
[NbConvertApp] Converting notebook first_example.ipynb to html
[NbConvertApp] Writing 578101 bytes to ../../../static/notebooks/first_example.html
In [ ]: