21 lines
387 B
Text
21 lines
387 B
Text
---
|
|
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
|
|
```
|