Sns.distplot Error: ‘Rectangle‘ object has no property ‘normed‘” [How to Solve]

Problem Description:
rectangular ‘object has no property’ normalized ‘in seaborn.distplot, but the normalized parameter is not used
reason:
the normalized parameter has been deprecated. The hist () histogram is built into plot, and the normalized parameter is the default parameter of hist
solution:
in Anaconda – > lib–> site-packages-> seaborn–> In distributions.py, change
hist around line 214 of the file_ kws.setdefault("normed", norm_ Hist)
is hist_ kws.setdefault("density", norm_ Hist)
restart

Read More: