Pandoc IPYNB to Typst

Pandoc IPYNB to TYPST

New Pandoc version 3.1.2 includes a writer for the typst format.

In [19]:
import pandas as pd
import numpy as np

df = pd.DataFrame(np.arange(10).reshape(5, 2))
df
Out[19]:
0 1
0 0 1
1 2 3
2 4 5
3 6 7
4 8 9
In [27]:
ax = df.plot(x=0,y=1, kind='scatter')
ax1 = df.plot.line(x=0, y=1, style='-o',ax=ax)
In [ ]: