4 Reproducible reporting with Quarto and Jupyter Notebook
4.1 Install Quarto
- Installation guide: https://quarto.org/docs/get-started/
4.2 Jupyter notebook
4.3 Obtain quarto preview
On terminal type
quarto preview Report1.ipynb
Then, you will get the following output file
Click on code to view the codes
4.4 Code-level options
When you run quarto preview Report1.ipynb
on the terminal you will get following output.
4.5 Document-level options
When you run quarto preview Report1.ipynb
, you will get
4.6 Rendering
Mac/Linux
python3 -m pip install jupyter jupyterlab
python3 -m pip install matplotlib plotly
python3 -m jupyter lab Report1.ipynb
Windows
py -m pip install jupyter jupyterlab
py -m pip install matplotlib plotly
py -m jupyter lab Report1.ipynb
More information: https://quarto.org/docs/get-started/hello/jupyter.html