-
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.
sns.distplot(df['total_bill'])
after run it , I get same type of err
C:\Users\HP\AppData\Local\Temp\ipykernel_14544\1285936593.py:1: UserWarning:
distplot is a deprecated function and will be removed in seaborn v0.14.0.
Please adapt your code to use either displot (a figure-level function with
similar flexibility) or histplot (an axes-level function for histograms).
For a guide to updating your code to use the new functions, please see
https://gist.github.com/mwaskom/de44147ed2974457ad6372750bbe5751
sns.distplot(df['total_bill'])
***but explanation is too good
you are dogs
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)


Thank you for this update