Laszlo
Laszlo
We should keep in mind that this ArviZ not only allows people to plot the things they want to, but it also shapes how people think about statistical plotting (or...
Apologies: at the time of the pull request this branch already included the changes from pull request #8 . Now I force-pushed this branch and those that built upon it....
Hi, I suggest you try out my fork at [treszkai/best](https://github.com/treszkai/best), whose documentation is available at [best.readthedocs.io/](https://best.readthedocs.io/) – note that it needs doesn't run on Python 2.7, and requires Python 3.5+...
@clerian Short answer: the code is correct. ```python >>> hdi_of_mcmc(st.norm(0,1).rvs(1_000_000)) (-1.9924611632940947, 1.9300090335912563) >>> import scipy.stats as st >>> st.norm(0,1).ppf([0.025, 0.975]) array([-1.95996398, 1.95996398]) >>> st.norm(0,1).ppf([0.05, 0.95]) array([-1.64485363, 1.64485363]) ``` An annotated...