Skip to content

Instantly share code, notes, and snippets.

@mwaskom
Last active June 2, 2026 21:48
Show Gist options
  • Select an option

  • Save mwaskom/de44147ed2974457ad6372750bbe5751 to your computer and use it in GitHub Desktop.

Select an option

Save mwaskom/de44147ed2974457ad6372750bbe5751 to your computer and use it in GitHub Desktop.
A guide to replacing the deprecated `seaborn.distplot` function.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@wasiqnafay

Copy link
Copy Markdown

you are dogs

@bcov77

bcov77 commented Jun 2, 2026

Copy link
Copy Markdown

Perhaps I'm posting this for myself, but here's a wrapper for the final example above showing how to replicate distplot()

def my_distplot(data=None, **kwargs):
    kwargs.setdefault("kde", True)
    kwargs.setdefault("stat", "density")
    kwargs.setdefault("kde_kws", dict(cut=3))
    kwargs.setdefault("alpha", .4)
    kwargs.setdefault("edgecolor", None)
    return sns.histplot(data, **kwargs)

edgecolor is set slightly differently from the example because distplot by default doesn't have edges (the example gives it white opaque edges)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment