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]:
In [27]:
ax = df.plot(x=0,y=1, kind='scatter')
ax1 = df.plot.line(x=0, y=1, style='-o',ax=ax)
In [ ]: