Second Example Notebook with Quarto Front Matter

Author

Michael Booth

Published

October 9, 2024

Introduction

This is another example Jupyter notebook that includes Quarto front matter. The front matter is included in a raw cell at the beginning of the notebook.

Code
import numpy as np
random_numbers = np.random.rand(5)
print(random_numbers)
Code
import matplotlib.pyplot as plt

plt.plot(random_numbers)
plt.show()

Code
# Make a commenting change to see if re-executes

print("See if re-executes now")
See if re-executes now
Code
plt.plot(random_numbers*2)
plt.show()