삽질기록

[Python] FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar fle..

두부너겟 2023. 1. 2. 10:31

 

seaborn 패키지 에서 distplot이 사라지고 histplot으로 바뀐것이므로 distplot 대신 histplot을 적용해주면 된다

 

sns.histplot('Age',kde=True,linewidth=0)

# 히스토그램 kdeplot 전부 보이게 하려면 
# kde_kws 옵션 수정할것
sns.histplot('Age',kde=True,linewidth=0,kde_kws=dict(cut=3))

 

 

참고자료 

 

https://gist.github.com/mwaskom/de44147ed2974457ad6372750bbe5751  

 

A guide to replacing the deprecated `seaborn.distplot` function.

A guide to replacing the deprecated `seaborn.distplot` function. - replacing_seaborn_distplot.ipynb

gist.github.com