Add lines between each cell in a Bivariate seaborn histplot blocks

Solution 1:

penguins = sns.load_dataset("penguins")
sns.histplot(
    penguins, x="bill_depth_mm", y="body_mass_g", linewidths=1,
    edgecolor="w"  # <-- Here's what you're missing
)

enter image description here