2026-07-14
Slides are just Markdown and code:
from plotnine import * from plotnine.data import anscombe_quartet
anscombe_quartet.head()
%view opens the data in Positron’s Data Explorer:
%view
%view anscombe_quartet
( anscombe_quartet .groupby("dataset")[["x", "y"]] .apply(lambda g: g["x"].corr(g["y"])) .round(2).to_frame("correlation") )