Probabilistic-Programming-and-Bayesian-Methods-for-Hackers
Probabilistic-Programming-and-Bayesian-Methods-for-Hackers copied to clipboard
normed option in plt.hist is deprecated
I just started going through the jupyter notebooks (great stuff, by the way), and when running the cells the first time I would always get some error like Polygon has no attribute normed
. It turns out that the normed
option in plt.hist
has been deprecated (in matplotlib
version 3.1.1 and later as far as I can tell), and should instead be replaced with density
(they appear to operate similarly).
Should this be changed? I wouldn't mind going through and making the modifications myself as I work through the notebooks.