Last active
June 2, 2026 21:48
-
Star
(139)
You must be signed in to star a gist -
Fork
(26)
You must be signed in to fork a gist
-
-
Save mwaskom/de44147ed2974457ad6372750bbe5751 to your computer and use it in GitHub Desktop.
A guide to replacing the deprecated `seaborn.distplot` function.
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
you are dogs