import seaborn as sns
="whitegrid")
sns.set_theme(style
# Load the diamonds dataset
= sns.load_dataset("diamonds")
diamonds
# Plot the distribution of clarity ratings, conditional on carat
sns.displot(=diamonds,
data="carat", hue="cut",
x="kde", height=4, aspect=1.5,
kind="fill", clip=(0, None),
multiple="ch:rot=-.25,hue=1,light=.75",
palette )
Third Blog Post
Science
Data
An example post where the source document is a Jupyter Notebook
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: