An example post where the source document is a Jupyter Notebook
Author
Alicia
Published
May 24, 2021
The source for any page in your website could also be a Jupyter Notebook. This one is third-post/index.ipynb.
Here’s an example I borrowed from the Seaborn docs:
import seaborn as snssns.set_theme(style="whitegrid")# Load the diamonds datasetdiamonds = sns.load_dataset("diamonds")# Plot the distribution of clarity ratings, conditional on caratsns.displot( data=diamonds, x="carat", hue="cut", kind="kde", height=4, aspect=1.5, multiple="fill", clip=(0, None), palette="ch:rot=-.25,hue=1,light=.75", )