Quarto test with GitHub

Author

Oleksandr Pylypovskyi

Published

October 16, 2022

Quarto is a powerful tool to prepare reports with built-in source code and plots. In particular, it can be used with R and Python codes. In my case, support of Jupyter Notebooks is appreciated since they can contain Markdown cells by default.

Code
import numpy as np
import plotly.express as ps

Prepare some a random stuff for plotting

Code
x = np.linspace(0,10,11)
y = np.random.random(11)
data = {'counts': x, 'measurements': y}
Code
ps.line(data, x='counts', y='measurements')