Jupyter notebook example

This notebook contains some Python code which was executed before committing the notebook to the repository. The code is not executed during the build process, but the cached execution results are rendered in the final webpage.

import matplotlib.pyplot as plt
import numpy as np
Bad value in file PosixPath('/Users/spears/.matplotlib/stylelib/RSC_Style.mplstyle'), line 8 ('mathtext.rm: Arial:narrow'): Key mathtext.rm: 
Arial:narrow
     ^
ParseException: Expected end of text, found ':'  (at char 5), (line:1, col:6)
random_matrix = np.random.rand(10, 10)

figure = plt.figure(figsize=(8,6))
ax = figure.subplots(1,1)
ax.imshow(random_matrix, cmap='hot')

figure