Add first plot to quarto article

This commit is contained in:
Marty Oehme 2025-10-06 11:59:54 +02:00
parent cccc2f6bd4
commit d8d2d1b16c
Signed by: Marty
GPG key ID: 4E535BC19C61886E
2 changed files with 15 additions and 1 deletions

View file

@ -5,3 +5,17 @@ title: "Popcorn analysis"
## Quarto
Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.
```{python}
from lets_plot import LetsPlot
LetsPlot.setup_html()
```
Testing plot
```{python}
#| column: page
from notebooks.popcorn import plt_filesize
outp, defs = plt_filesize.run()
outp
```