Third Blog Post

Science
Data
An example post where the source document is a Jupyter Notebook
Author

Alicia

Published

May 24, 2022

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 sns

sns.set_theme(style="whitegrid")

# Load the diamonds dataset
diamonds = sns.load_dataset("diamonds")

# Plot the distribution of clarity ratings, conditional on carat
sns.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",   
)