I have searched S/O but I couldn\'t find a answer for this.
When I try to plot a distribution plot using seaborn I am getting a futurewarning. I was wondering what
I came across the same warning. I updated scipy,pandas and numpy. I still get it.I get it when i use seaborn.pairplot
with kde, which underneath uses seaborn.kdeplot
.
If you want to get rid off the warning you can use warnings library. Ex:
import warnings
with warnings.catch_warnings():
your_code_block