arviz 0.16.1__tar.gz → 0.17.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (200) hide show
  1. arviz-0.17.1/CHANGELOG.md +731 -0
  2. {arviz-0.16.1 → arviz-0.17.1}/PKG-INFO +5 -4
  3. {arviz-0.16.1 → arviz-0.17.1}/README.md +3 -3
  4. {arviz-0.16.1 → arviz-0.17.1}/arviz/__init__.py +1 -1
  5. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/inference_data.py +34 -7
  6. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/io_beanmachine.py +6 -1
  7. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/io_cmdstanpy.py +439 -50
  8. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/io_pyjags.py +5 -2
  9. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/io_pystan.py +1 -2
  10. {arviz-0.16.1 → arviz-0.17.1}/arviz/labels.py +2 -0
  11. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/bpvplot.py +7 -2
  12. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/compareplot.py +7 -4
  13. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/densityplot.py +0 -1
  14. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/distplot.py +0 -2
  15. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/forestplot.py +3 -5
  16. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/kdeplot.py +0 -2
  17. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/pairplot.py +0 -4
  18. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/bfplot.py +0 -1
  19. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/bpvplot.py +3 -3
  20. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/compareplot.py +1 -1
  21. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/dotplot.py +1 -1
  22. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/forestplot.py +2 -4
  23. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/kdeplot.py +0 -1
  24. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/khatplot.py +0 -1
  25. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/lmplot.py +4 -5
  26. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/pairplot.py +0 -1
  27. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/ppcplot.py +8 -5
  28. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/traceplot.py +1 -2
  29. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/bfplot.py +7 -6
  30. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/bpvplot.py +7 -2
  31. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/compareplot.py +2 -2
  32. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/ecdfplot.py +37 -112
  33. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/elpdplot.py +1 -1
  34. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/essplot.py +2 -2
  35. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/kdeplot.py +0 -1
  36. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/pairplot.py +1 -1
  37. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/plot_utils.py +0 -1
  38. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/ppcplot.py +51 -45
  39. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/separationplot.py +0 -1
  40. {arviz-0.16.1 → arviz-0.17.1}/arviz/stats/__init__.py +2 -0
  41. {arviz-0.16.1 → arviz-0.17.1}/arviz/stats/density_utils.py +2 -2
  42. {arviz-0.16.1 → arviz-0.17.1}/arviz/stats/diagnostics.py +2 -3
  43. arviz-0.17.1/arviz/stats/ecdf_utils.py +165 -0
  44. {arviz-0.16.1 → arviz-0.17.1}/arviz/stats/stats.py +241 -38
  45. {arviz-0.16.1 → arviz-0.17.1}/arviz/stats/stats_utils.py +36 -7
  46. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/test_data.py +73 -5
  47. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/test_plots_bokeh.py +0 -1
  48. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/test_plots_matplotlib.py +24 -1
  49. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/test_stats.py +43 -1
  50. arviz-0.17.1/arviz/tests/base_tests/test_stats_ecdf_utils.py +153 -0
  51. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/test_stats_utils.py +3 -3
  52. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/external_tests/test_data_beanmachine.py +2 -0
  53. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/external_tests/test_data_numpyro.py +3 -3
  54. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/external_tests/test_data_pyjags.py +3 -1
  55. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/external_tests/test_data_pyro.py +3 -3
  56. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/helpers.py +8 -8
  57. {arviz-0.16.1 → arviz-0.17.1}/arviz/utils.py +15 -7
  58. {arviz-0.16.1 → arviz-0.17.1}/arviz.egg-info/PKG-INFO +5 -4
  59. {arviz-0.16.1 → arviz-0.17.1}/arviz.egg-info/SOURCES.txt +2 -0
  60. {arviz-0.16.1 → arviz-0.17.1}/arviz.egg-info/requires.txt +3 -3
  61. {arviz-0.16.1 → arviz-0.17.1}/requirements-dev.txt +1 -1
  62. {arviz-0.16.1 → arviz-0.17.1}/requirements-docs.txt +3 -4
  63. {arviz-0.16.1 → arviz-0.17.1}/requirements-external.txt +1 -3
  64. {arviz-0.16.1 → arviz-0.17.1}/requirements.txt +3 -3
  65. {arviz-0.16.1 → arviz-0.17.1}/setup.py +1 -0
  66. arviz-0.16.1/CHANGELOG.md +0 -644
  67. {arviz-0.16.1 → arviz-0.17.1}/CODE_OF_CONDUCT.md +0 -0
  68. {arviz-0.16.1 → arviz-0.17.1}/CONTRIBUTING.md +0 -0
  69. {arviz-0.16.1 → arviz-0.17.1}/GOVERNANCE.md +0 -0
  70. {arviz-0.16.1 → arviz-0.17.1}/LICENSE +0 -0
  71. {arviz-0.16.1 → arviz-0.17.1}/MANIFEST.in +0 -0
  72. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/__init__.py +0 -0
  73. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/base.py +0 -0
  74. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/converters.py +0 -0
  75. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/datasets.py +0 -0
  76. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/example_data/code/radon/radon.json +0 -0
  77. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/example_data/data/centered_eight.nc +0 -0
  78. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/example_data/data/non_centered_eight.nc +0 -0
  79. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/example_data/data_local.json +0 -0
  80. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/example_data/data_remote.json +0 -0
  81. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/io_cmdstan.py +0 -0
  82. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/io_datatree.py +0 -0
  83. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/io_dict.py +0 -0
  84. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/io_emcee.py +0 -0
  85. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/io_json.py +0 -0
  86. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/io_netcdf.py +0 -0
  87. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/io_numpyro.py +0 -0
  88. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/io_pyro.py +0 -0
  89. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/io_zarr.py +0 -0
  90. {arviz-0.16.1 → arviz-0.17.1}/arviz/data/utils.py +0 -0
  91. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/__init__.py +0 -0
  92. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/autocorrplot.py +0 -0
  93. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/__init__.py +0 -0
  94. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/__init__.py +0 -0
  95. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/autocorrplot.py +0 -0
  96. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/bfplot.py +0 -0
  97. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/distcomparisonplot.py +0 -0
  98. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/dotplot.py +0 -0
  99. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/ecdfplot.py +0 -0
  100. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/elpdplot.py +0 -0
  101. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/energyplot.py +0 -0
  102. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/essplot.py +0 -0
  103. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/hdiplot.py +0 -0
  104. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/khatplot.py +0 -0
  105. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/lmplot.py +0 -0
  106. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/loopitplot.py +0 -0
  107. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/mcseplot.py +0 -0
  108. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/parallelplot.py +0 -0
  109. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/posteriorplot.py +0 -0
  110. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/ppcplot.py +0 -0
  111. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/rankplot.py +0 -0
  112. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/separationplot.py +0 -0
  113. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/traceplot.py +0 -0
  114. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/bokeh/violinplot.py +0 -0
  115. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/__init__.py +0 -0
  116. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/autocorrplot.py +0 -0
  117. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/densityplot.py +0 -0
  118. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/distcomparisonplot.py +0 -0
  119. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/distplot.py +0 -0
  120. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/ecdfplot.py +0 -0
  121. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/elpdplot.py +0 -0
  122. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/energyplot.py +0 -0
  123. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/essplot.py +0 -0
  124. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/hdiplot.py +0 -0
  125. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/loopitplot.py +0 -0
  126. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/mcseplot.py +0 -0
  127. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/parallelplot.py +0 -0
  128. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/posteriorplot.py +0 -0
  129. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/rankplot.py +0 -0
  130. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/separationplot.py +0 -0
  131. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/tsplot.py +0 -0
  132. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/backends/matplotlib/violinplot.py +0 -0
  133. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/densityplot.py +0 -0
  134. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/distcomparisonplot.py +0 -0
  135. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/distplot.py +0 -0
  136. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/dotplot.py +0 -0
  137. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/energyplot.py +0 -0
  138. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/forestplot.py +0 -0
  139. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/hdiplot.py +0 -0
  140. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/khatplot.py +0 -0
  141. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/lmplot.py +0 -0
  142. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/loopitplot.py +0 -0
  143. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/mcseplot.py +0 -0
  144. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/parallelplot.py +0 -0
  145. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/posteriorplot.py +0 -0
  146. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/rankplot.py +0 -0
  147. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-bluish.mplstyle +0 -0
  148. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-brownish.mplstyle +0 -0
  149. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-colors.mplstyle +0 -0
  150. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-cyanish.mplstyle +0 -0
  151. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-darkgrid.mplstyle +0 -0
  152. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-doc.mplstyle +0 -0
  153. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-docgrid.mplstyle +0 -0
  154. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-grayscale.mplstyle +0 -0
  155. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-greenish.mplstyle +0 -0
  156. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-orangish.mplstyle +0 -0
  157. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-plasmish.mplstyle +0 -0
  158. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-purplish.mplstyle +0 -0
  159. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-redish.mplstyle +0 -0
  160. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-royish.mplstyle +0 -0
  161. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-viridish.mplstyle +0 -0
  162. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-white.mplstyle +0 -0
  163. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/styles/arviz-whitegrid.mplstyle +0 -0
  164. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/traceplot.py +0 -0
  165. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/tsplot.py +0 -0
  166. {arviz-0.16.1 → arviz-0.17.1}/arviz/plots/violinplot.py +0 -0
  167. {arviz-0.16.1 → arviz-0.17.1}/arviz/py.typed +0 -0
  168. {arviz-0.16.1 → arviz-0.17.1}/arviz/rcparams.py +0 -0
  169. {arviz-0.16.1 → arviz-0.17.1}/arviz/sel_utils.py +0 -0
  170. {arviz-0.16.1 → arviz-0.17.1}/arviz/static/css/style.css +0 -0
  171. {arviz-0.16.1 → arviz-0.17.1}/arviz/static/html/icons-svg-inline.html +0 -0
  172. {arviz-0.16.1 → arviz-0.17.1}/arviz/stats/stats_refitting.py +0 -0
  173. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/__init__.py +0 -0
  174. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/__init__.py +0 -0
  175. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/test_data_zarr.py +0 -0
  176. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/test_diagnostics.py +0 -0
  177. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/test_diagnostics_numba.py +0 -0
  178. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/test_helpers.py +0 -0
  179. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/test_labels.py +0 -0
  180. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/test_plot_utils.py +0 -0
  181. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/test_rcparams.py +0 -0
  182. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/test_stats_numba.py +0 -0
  183. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/test_utils.py +0 -0
  184. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/base_tests/test_utils_numba.py +0 -0
  185. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/conftest.py +0 -0
  186. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/external_tests/__init__.py +0 -0
  187. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/external_tests/test_data_cmdstan.py +0 -0
  188. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/external_tests/test_data_cmdstanpy.py +0 -0
  189. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/external_tests/test_data_emcee.py +0 -0
  190. {arviz-0.16.1 → arviz-0.17.1}/arviz/tests/external_tests/test_data_pystan.py +0 -0
  191. {arviz-0.16.1 → arviz-0.17.1}/arviz/wrappers/__init__.py +0 -0
  192. {arviz-0.16.1 → arviz-0.17.1}/arviz/wrappers/base.py +0 -0
  193. {arviz-0.16.1 → arviz-0.17.1}/arviz/wrappers/wrap_pymc.py +1 -1
  194. {arviz-0.16.1 → arviz-0.17.1}/arviz/wrappers/wrap_stan.py +0 -0
  195. {arviz-0.16.1 → arviz-0.17.1}/arviz.egg-info/dependency_links.txt +0 -0
  196. {arviz-0.16.1 → arviz-0.17.1}/arviz.egg-info/top_level.txt +0 -0
  197. {arviz-0.16.1 → arviz-0.17.1}/pyproject.toml +0 -0
  198. {arviz-0.16.1 → arviz-0.17.1}/requirements-optional.txt +0 -0
  199. {arviz-0.16.1 → arviz-0.17.1}/requirements-test.txt +0 -0
  200. {arviz-0.16.1 → arviz-0.17.1}/setup.cfg +0 -0
@@ -0,0 +1,731 @@
1
+ # Change Log
2
+
3
+ ## v0.17.1 (2024 Mar 13)
4
+
5
+ ### Maintenance and fixes
6
+ - Fix deprecations introduced in latest pandas and xarray versions, and prepare for numpy 2.0 ones ([2315](https://github.com/arviz-devs/arviz/pull/2315)))
7
+ - Refactor ECDF code ([2311](https://github.com/arviz-devs/arviz/pull/2311))
8
+ - Fix `plot_forest` when Numba is installed ([2319](https://github.com/arviz-devs/arviz/pull/2319))
9
+
10
+ ## v0.17.0 (2023 Dec 22)
11
+
12
+ ### New features
13
+ - Add prior sensitivity diagnostic `psens` ([2093](https://github.com/arviz-devs/arviz/pull/2093))
14
+ - Add filter_vars functionality to `InfereceData.to_dataframe`method ([2277](https://github.com/arviz-devs/arviz/pull/2277))
15
+
16
+ ### Maintenance and fixes
17
+
18
+ - Update requirements: matplotlib>=3.5, pandas>=1.4.0, numpy>=1.22.0 ([2280](https://github.com/arviz-devs/arviz/pull/2280))
19
+ - Fix behaviour of `plot_ppc` when dimension order isn't `chain, draw, ...` ([2283](https://github.com/arviz-devs/arviz/pull/2283))
20
+ - Avoid repeating the variable name in `plot_ppc`, `plot_bpv`, `plot_loo_pit`... when repeated. ([2283](https://github.com/arviz-devs/arviz/pull/2283))
21
+ - Add support for the latest CmdStanPy. ([2287](https://github.com/arviz-devs/arviz/pull/2287))
22
+ - Fix import error on windows due to missing encoding argument ([2300](https://github.com/arviz-devs/arviz/pull/2300))
23
+ - Add ``__delitem__`` method to InferenceData ([2292](https://github.com/arviz-devs/arviz/pull/2292))
24
+
25
+ ### Documentation
26
+ - Improve the docstring of `psislw` ([2300](https://github.com/arviz-devs/arviz/pull/2300))
27
+ - Rerun the quickstart and working with InferenceData notebooks ([2300](https://github.com/arviz-devs/arviz/pull/2300))
28
+
29
+ - Several fixes in `plot_ppc` docstring ([2283](https://github.com/arviz-devs/arviz/pull/2283))
30
+
31
+ ## v0.16.1 (2023 Jul 18)
32
+
33
+ ### Maintenance and fixes
34
+
35
+ - Fix Numba deprecation errors and incorrect nopython usage ([2268](https://github.com/arviz-devs/arviz/pull/2268))
36
+
37
+ ### Documentation
38
+
39
+ - Rerun Numba notebook
40
+
41
+ ## v0.16.0 (2023 Jul 13)
42
+
43
+ ### New features
44
+
45
+ - Add InferenceData<->DataTree conversion functions ([2253](https://github.com/arviz-devs/arviz/pull/2253))
46
+ - Bayes Factor plot: Use arviz's kde instead of the one from scipy ([2237](https://github.com/arviz-devs/arviz/pull/2237))
47
+ - InferenceData objects can now be appended to existing netCDF4 files and to specific groups within them ([2227](https://github.com/arviz-devs/arviz/pull/2227))
48
+ - Added facade functions `az.to_zarr` and `az.from_zarr` ([2236](https://github.com/arviz-devs/arviz/pull/2236))
49
+
50
+ ### Maintenance and fixes
51
+
52
+ - Replace deprecated np.product with np.prod ([2249](https://github.com/arviz-devs/arviz/pull/2249))
53
+ - Fix numba deprecation warning ([2246](https://github.com/arviz-devs/arviz/pull/2246))
54
+ - Fixes for creating numpy object array ([2233](https://github.com/arviz-devs/arviz/pull/2233) and [2239](https://github.com/arviz-devs/arviz/pull/2239))
55
+ - Adapt histograms generated by plot_dist to input dtype ([2247](https://github.com/arviz-devs/arviz/pull/2247))
56
+
57
+ ## v0.15.1 (2023 Mar 06)
58
+
59
+ ### New features
60
+
61
+ ### Maintenance and fixes
62
+
63
+ - Fix memory usage and improve efficiency in `from_emcee` ([2215](https://github.com/arviz-devs/arviz/pull/2215))
64
+ - Lower pandas version needed ([2217](https://github.com/arviz-devs/arviz/pull/2217))
65
+
66
+ ### Deprecation
67
+
68
+ ### Documentation
69
+
70
+ - Update documentation for various plots ([2208](https://github.com/arviz-devs/arviz/pull/2208))
71
+
72
+ ## v0.15.0 (2023 Feb 19)
73
+
74
+ ### New features
75
+
76
+ - Adds Savage-Dickey density ratio plot for Bayes factor approximation. ([2037](https://github.com/arviz-devs/arviz/pull/2037), [2152](https://github.com/arviz-devs/arviz/pull/2152))
77
+ - Add `CmdStanPySamplingWrapper` and `PyMCSamplingWrapper` classes ([2158](https://github.com/arviz-devs/arviz/pull/2158))
78
+ - Changed dependency on netcdf4-python to h5netcdf ([2122](https://github.com/arviz-devs/arviz/pull/2122))
79
+
80
+ ### Maintenance and fixes
81
+
82
+ - Fix `reloo` outdated usage of `ELPDData` ([2158](https://github.com/arviz-devs/arviz/pull/2158))
83
+ - plot_bpv smooth discrete data only when computing u_values ([2179](https://github.com/arviz-devs/arviz/pull/2179))
84
+ - Fix bug when beanmachine objects lack some fields ([2154](https://github.com/arviz-devs/arviz/pull/2154))
85
+ - Fix gap for `plot_trace` with option `kind="rank_bars"` ([2180](https://github.com/arviz-devs/arviz/pull/2180))
86
+ - Fix `plot_lm` unsupported usage of `np.tile` ([2186](https://github.com/arviz-devs/arviz/pull/2186))
87
+ - Update `_z_scale` to work with SciPy 1.10 ([2186](https://github.com/arviz-devs/arviz/pull/2186))
88
+ - Fix bug in BaseLabeller when combining with with NoVarLabeller ([2200](https://github.com/arviz-devs/arviz/pull/2200))
89
+
90
+ ### Deprecation
91
+
92
+ ### Documentation
93
+
94
+ - Add PyMC and CmdStanPy sampling wrapper examples ([2158](https://github.com/arviz-devs/arviz/pull/2158))
95
+ - Fix docstring for plot_trace chain_prop and compact_prop parameters ([2176](https://github.com/arviz-devs/arviz/pull/2176))
96
+ - Add video of contributing to ArviZ webinar in contributing guide ([2184](https://github.com/arviz-devs/arviz/pull/2184))
97
+
98
+ ## v0.14.0 (2022 Nov 15)
99
+
100
+ ### New features
101
+
102
+ - Add `weight_predictions` function to allow generation of weighted predictions from two or more InfereceData with `posterior_predictive` groups and a set of weights ([2147](https://github.com/arviz-devs/arviz/pull/2147))
103
+ - Add Savage-Dickey density ratio plot for Bayes factor approximation. ([2037](https://github.com/arviz-devs/arviz/pull/2037), [2152](https://github.com/arviz-devs/arviz/pull/2152
104
+ - Adds rug plot for observed variables to `plot_ppc`. ([2161](https://github.com/arviz-devs/arviz/pull/2161))
105
+
106
+ ### Maintenance and fixes
107
+
108
+ - Fix dimension ordering for `plot_trace` with divergences ([2151](https://github.com/arviz-devs/arviz/pull/2151))
109
+
110
+ ## v0.13.0 (2022 Oct 22)
111
+
112
+ ### New features
113
+
114
+ - Add `side` argument to `plot_violin` to allow single-sided violin plots ([1996](https://github.com/arviz-devs/arviz/pull/1996))
115
+ - Added support for Bean Machine via the function `from_beanmachine`. ([2107](https://github.com/arviz-devs/arviz/pull/2107)
116
+ - Add support for warmup samples in `from_pystan` for PyStan 3. ([2132](https://github.com/arviz-devs/arviz/pull/2132)
117
+
118
+ ### Maintenance and fixes
119
+
120
+ - Add exception in `az.plot_hdi` for `x` of type `np.datetime64` and `smooth=True` ([2016](https://github.com/arviz-devs/arviz/pull/2016))
121
+ - Change `ax.plot` usage to `ax.scatter` in `plot_pair` ([1990](https://github.com/arviz-devs/arviz/pull/1990))
122
+ - Example data has been moved to the [arviz_example_data](https://github.com/arviz-devs/arviz_example_data) repository and is now included using git subtree.
123
+ ([2096](https://github.com/arviz-devs/arviz/pull/2096) and [2105](https://github.com/arviz-devs/arviz/pull/2105))
124
+ - Bokeh kde contour plots started to use `contourpy` package ([2104](https://github.com/arviz-devs/arviz/pull/2104))
125
+ - Update default Bokeh markers for rcparams ([2104](https://github.com/arviz-devs/arviz/pull/2104))
126
+ - Correctly (re)order dimensions for `bfmi` and `plot_energy` ([2126](https://github.com/arviz-devs/arviz/pull/2126))
127
+ - Fix bug with the dimension order dependency ([2103](https://github.com/arviz-devs/arviz/pull/2103))
128
+ - Add testing module for labeller classes ([2095](https://github.com/arviz-devs/arviz/pull/2095))
129
+ - Skip compression for object dtype while creating a netcdf file ([2129](https://github.com/arviz-devs/arviz/pull/2129))
130
+ - Fix issue in dim generation when default dims are present in user inputed dims ([2138](https://github.com/arviz-devs/arviz/pull/2138))
131
+ - Save InferenceData level attrs to netcdf and zarr ([2131](https://github.com/arviz-devs/arviz/pull/2131))
132
+ - Update tests and docs for updated example data ([2137](https://github.com/arviz-devs/arviz/pull/2137))
133
+ - Copy coords before modifying in ppcplot ([2160](https://github.com/arviz-devs/arviz/pull/2160))
134
+
135
+ ### Deprecation
136
+
137
+ - Removed `fill_last`, `contour` and `plot_kwargs` arguments from `plot_pair` function ([2085](https://github.com/arviz-devs/arviz/pull/2085))
138
+
139
+ ### Documentation
140
+
141
+ - Add translation overview to contributing guide ([2041](https://github.com/arviz-devs/arviz/pull/2041))
142
+ - Improve how to release page ([2144](https://github.com/arviz-devs/arviz/pull/2144))
143
+
144
+ ## v0.12.1 (2022 May 12)
145
+
146
+ ### New features
147
+
148
+ - Add `stat_focus` argument to `arviz.summary` ([1998](https://github.com/arviz-devs/arviz/pull/1998))
149
+
150
+ ### Maintenance and fixes
151
+
152
+ - `psislw` now smooths log-weights even when shape is lower than `1/3`([2011](https://github.com/arviz-devs/arviz/pull/2011))
153
+ - Fixes `from_cmdstanpy`, handles parameter vectors of length 1 ([2023](https://github.com/arviz-devs/arviz/pull/2023))
154
+ - Fix typo in `BaseLabeller` that broke `NoVarLabeller` ([2018](https://github.com/arviz-devs/arviz/pull/2018))
155
+
156
+ ### Documentation
157
+
158
+ - Adding plotting guides ([2025](https://github.com/arviz-devs/arviz/pull/2025))
159
+ - Update links to use new domain ([2013](https://github.com/arviz-devs/arviz/pull/2013))
160
+
161
+ ## v0.12.0 (2022 Mar 23)
162
+
163
+ ### New features
164
+
165
+ - Add new convenience function `arviz.extract_dataset` ([1725](https://github.com/arviz-devs/arviz/pull/1725))
166
+ - Add `combine_dims` argument to several functions ([1676](https://github.com/arviz-devs/arviz/pull/1676))
167
+ - [experimental] Enable dask chunking information to be passed to `InferenceData.from_netcdf` with regex support ([1749](https://github.com/arviz-devs/arviz/pull/1749))
168
+ - Allow kwargs to customize appearance of the mean in `plot_lm`
169
+ - Add dict option to `from_cmdstan` log_likelihood parameter (as in `from_pystan`)
170
+ - Unify model comparison API. Both `plot_compare`, `plot_elpd` can now take dicts of InferenceData or ELPDData ([1690](https://github.com/arviz-devs/arviz/pull/1690))
171
+ - Change default for rcParam `stats.ic_pointwise` to True ([1690](https://github.com/arviz-devs/arviz/pull/1690))
172
+ - Add new plot type: plot_ecdf ([1753](https://github.com/arviz-devs/arviz/pull/1753))
173
+
174
+ ### Maintenance and fixes
175
+
176
+ - Drop Python 3.6 support ([1430](https://github.com/arviz-devs/arviz/pull/1430))
177
+ - Bokeh 3 compatibility. ([1919](https://github.com/arviz-devs/arviz/pull/1919))
178
+ - Remove manual setting of 2d KDE limits ([1939](https://github.com/arviz-devs/arviz/pull/1939))
179
+ - Pin to bokeh<3 version ([1954](https://github.com/arviz-devs/arviz/pull/1954))
180
+ - Fix legend labels in plot_ppc to reflect prior or posterior. ([1967](https://github.com/arviz-devs/arviz/pull/1967))
181
+ - Change `DataFrame.append` to `pandas.concat` ([1973](https://github.com/arviz-devs/arviz/pull/1973))
182
+ - Fix axis sharing behaviour in `plot_pair`. ([1985](https://github.com/arviz-devs/arviz/pull/1985))
183
+ - Fix parameter duplication problem with PyStan ([1962](https://github.com/arviz-devs/arviz/pull/1962))
184
+ - Temporarily disable pyjags tests ([1963](https://github.com/arviz-devs/arviz/pull/1963))
185
+ - Fix tuple bug in coords ([1695](https://github.com/arviz-devs/arviz/pull/1695))
186
+ - Fix extend 'right' join bug ([1718](https://github.com/arviz-devs/arviz/pull/1718))
187
+ - Update attribute handling for InferenceData ([1357](https://github.com/arviz-devs/arviz/pull/1357))
188
+ - Fix R2 implementation ([1666](https://github.com/arviz-devs/arviz/pull/1666))
189
+ - Added warning message in `plot_dist_comparison()` in case subplots go over the limit ([1688](https://github.com/arviz-devs/arviz/pull/1688))
190
+ - Fix coord value ignoring for default dims ([2001](https://github.com/arviz-devs/arviz/pull/2001))
191
+ - Fixed plot_posterior with boolean data ([1707](https://github.com/arviz-devs/arviz/pull/1707))
192
+ - Fix min_ess usage in plot_ess ([2002](https://github.com/arviz-devs/arviz/pull/2002))
193
+
194
+ ### Deprecation
195
+
196
+ ### Documentation
197
+
198
+ - Fixed typo in `Forestplot` documentation
199
+ - Restructured contributing section and added several new pages to help contributing to docs ([1903](https://github.com/arviz-devs/arviz/pull/1903))
200
+
201
+ ## v0.11.4 (2021 Oct 3)
202
+
203
+ ### Maintenance and fixes
204
+
205
+ - Fix standard deviation code in density utils by replacing it with `np.std`. ([1833](https://github.com/arviz-devs/arviz/pull/1833))
206
+
207
+ ## v0.11.3 (2021 Oct 1)
208
+
209
+ ### New features
210
+
211
+ - Change order of regularization in `psislw` ([1943](https://github.com/arviz-devs/arviz/pull/1943))
212
+ - Added `labeller` argument to enable label customization in plots and summary ([1201](https://github.com/arviz-devs/arviz/pull/1201))
213
+ - Added `arviz.labels` module with classes and utilities ([1201](https://github.com/arviz-devs/arviz/pull/1201) and [1605](https://github.com/arviz-devs/arviz/pull/1605))
214
+ - Added probability estimate within ROPE in `plot_posterior` ([1570](https://github.com/arviz-devs/arviz/pull/1570))
215
+ - Added `rope_color` and `ref_val_color` arguments to `plot_posterior` ([1570](https://github.com/arviz-devs/arviz/pull/1570))
216
+ - Improved retrieving or pointwise log likelihood in `from_cmdstanpy`, `from_cmdstan` and `from_pystan` ([1579](https://github.com/arviz-devs/arviz/pull/1579) and [1599](https://github.com/arviz-devs/arviz/pull/1599))
217
+ - Added interactive legend to bokeh `forestplot` ([1591](https://github.com/arviz-devs/arviz/pull/1591))
218
+ - Added interactive legend to bokeh `ppcplot` ([1602](https://github.com/arviz-devs/arviz/pull/1602))
219
+ - Add more helpful error message for HDF5 problems reading `InferenceData` from NetCDF ([1637](https://github.com/arviz-devs/arviz/pull/1637))
220
+ - Added `data.log_likelihood`, `stats.ic_compare_method` and `plot.density_kind` to `rcParams` ([1611](https://github.com/arviz-devs/arviz/pull/1611))
221
+ - Improve error messages in `stats.compare()`, and `var_name` parameter. ([1616](https://github.com/arviz-devs/arviz/pull/1616))
222
+ - Added ability to plot HDI contours to `plot_kde` with the new `hdi_probs` parameter. ([1665](https://github.com/arviz-devs/arviz/pull/1665))
223
+ - Add dtype parsing and setting in all Stan converters ([1632](https://github.com/arviz-devs/arviz/pull/1632))
224
+ - Add option to specify colors for each element in ppc_plot ([1769](https://github.com/arviz-devs/arviz/pull/1769))
225
+
226
+ ### Maintenance and fixes
227
+
228
+ - Fix conversion for numpyro models with ImproperUniform latent sites ([1713](https://github.com/arviz-devs/arviz/pull/1713))
229
+ - Fixed conversion of Pyro output fit using GPUs ([1659](https://github.com/arviz-devs/arviz/pull/1659))
230
+ - Enforced using coordinate values as default labels ([1201](https://github.com/arviz-devs/arviz/pull/1201))
231
+ - Integrate `index_origin` with all the library ([1201](https://github.com/arviz-devs/arviz/pull/1201))
232
+ - Fix pareto k threshold typo in reloo function ([1580](https://github.com/arviz-devs/arviz/pull/1580))
233
+ - Preserve shape from Stan code in `from_cmdstanpy` ([1579](https://github.com/arviz-devs/arviz/pull/1579))
234
+ - Updated `from_pystan` converters to follow schema convention ([1585](https://github.com/arviz-devs/arviz/pull/1585)
235
+ - Used generator instead of list wherever possible ([1588](https://github.com/arviz-devs/arviz/pull/1588))
236
+ - Correctly use chain index when constructing PyMC3 `DefaultTrace` in `from_pymc3` ([1590](https://github.com/arviz-devs/arviz/pull/1590))
237
+ - Fix bugs in CmdStanPyConverter ([1595](https://github.com/arviz-devs/arviz/pull/1595) and [1598](https://github.com/arviz-devs/arviz/pull/1598))
238
+ - Fix `c` argument in `plot_khat` ([1592](https://github.com/arviz-devs/arviz/pull/1592))
239
+ - Fix `ax` argument in `plot_elpd` ([1593](https://github.com/arviz-devs/arviz/pull/1593))
240
+ - Remove warning in `stats.py` compare function ([1607](https://github.com/arviz-devs/arviz/pull/1607))
241
+ - Fix `ess/rhat` plots in `plot_forest` ([1606](https://github.com/arviz-devs/arviz/pull/1606))
242
+ - Fix `from_numpyro` crash when importing model with `thinning=x` for `x > 1` ([1619](https://github.com/arviz-devs/arviz/pull/1619))
243
+ - Upload updated mypy.ini in ci if mypy copilot fails ([1624](https://github.com/arviz-devs/arviz/pull/1624))
244
+ - Added type checking to raise an error whenever `InferenceData` object is passed using `io_pymc3`'s `trace` argument ([1629](https://github.com/arviz-devs/arviz/pull/1629))
245
+ - Fix `xlabels` in `plot_elpd` ([1601](https://github.com/arviz-devs/arviz/pull/1601))
246
+ - Renamed `sample` dim to `__sample__` when stacking `chain` and `draw` to avoid dimension collision ([1647](https://github.com/arviz-devs/arviz/pull/1647))
247
+ - Removed the `circular` argument in `plot_dist` in favor of `is_circular` ([1681](https://github.com/arviz-devs/arviz/pull/1681))
248
+ - Fix `legend` argument in `plot_separation` ([1701](https://github.com/arviz-devs/arviz/pull/1701))
249
+ - Removed testing dependency on http download for radon dataset ([1717](https://github.com/arviz-devs/arviz/pull/1717))
250
+ - Fixed plot_kde to take labels with kwargs. ([1710](https://github.com/arviz-devs/arviz/pull/1710))
251
+ - Fixed xarray related tests. ([1726](https://github.com/arviz-devs/arviz/pull/1726))
252
+ - Fix Bokeh deprecation warnings ([1657](https://github.com/arviz-devs/arviz/pull/1657))
253
+ - Fix credible inteval percentage in legend in `plot_loo_pit` ([1745](https://github.com/arviz-devs/arviz/pull/1745))
254
+ - Arguments `filter_vars` and `filter_groups` now raise `ValueError` if illegal arguments are passed ([1772](https://github.com/arviz-devs/arviz/pull/1772))
255
+ - Remove constrained_layout from arviz rcparams ([1764](https://github.com/arviz-devs/arviz/pull/1764))
256
+ - Fix plot_elpd for a single outlier ([1787](https://github.com/arviz-devs/arviz/pull/1787))
257
+
258
+ ### Deprecation
259
+
260
+ - Deprecated `index_origin` and `order` arguments in `az.summary` ([1201](https://github.com/arviz-devs/arviz/pull/1201))
261
+
262
+ ### Documentation
263
+
264
+ - Language improvements of the first third of the "Label guide" ([1699](https://github.com/arviz-devs/arviz/pull/1699))
265
+ - Added "Label guide" page and API section for `arviz.labels` module ([1201](https://github.com/arviz-devs/arviz/pull/1201) and [1635](https://github.com/arviz-devs/arviz/pull/1635))
266
+ - Add "Installation guide" page to the documentation ([1551](https://github.com/arviz-devs/arviz/pull/1551))
267
+ - Improve documentation on experimental `SamplingWrapper` classes ([1582](https://github.com/arviz-devs/arviz/pull/1582))
268
+ - Added example to `plot_hdi` using Inference Data ([1615](https://github.com/arviz-devs/arviz/pull/1615))
269
+ - Removed `geweke` diagnostic from `numba` user guide ([1653](https://github.com/arviz-devs/arviz/pull/1653))
270
+ - Restructured the documentation sections to improve community and about us information ([1587](https://github.com/arviz-devs/arviz/pull/1587))
271
+
272
+ ## v0.11.2 (2021 Feb 21)
273
+
274
+ ### New features
275
+
276
+ - Added `to_zarr` and `from_zarr` methods to InferenceData ([1518](https://github.com/arviz-devs/arviz/pull/1518))
277
+ - Added confidence interval band to auto-correlation plot ([1535](https://github.com/arviz-devs/arviz/pull/1535))
278
+
279
+ ### Maintenance and fixes
280
+
281
+ - Updated CmdStanPy converter form compatibility with versions >=0.9.68 ([1558](https://github.com/arviz-devs/arviz/pull/1558) and ([1564](https://github.com/arviz-devs/arviz/pull/1564))
282
+ - Updated `from_cmdstanpy`, `from_cmdstan`, `from_numpyro` and `from_pymc3` converters to follow schema convention ([1550](https://github.com/arviz-devs/arviz/pull/1550), [1541](https://github.com/arviz-devs/arviz/pull/1541), [1525](https://github.com/arviz-devs/arviz/pull/1525) and [1555](https://github.com/arviz-devs/arviz/pull/1555))
283
+ - Fix calculation of mode as point estimate ([1552](https://github.com/arviz-devs/arviz/pull/1552))
284
+ - Remove variable name from legend in posterior predictive plot ([1559](https://github.com/arviz-devs/arviz/pull/1559))
285
+ - Added significant digits formatter to round rope values ([1569](https://github.com/arviz-devs/arviz/pull/1569))
286
+ - Updated `from_cmdstan`. csv reader, dtype problem fixed and dtype kwarg added for manual dtype casting ([1565](https://github.com/arviz-devs/arviz/pull/1565))
287
+
288
+ ### Deprecation
289
+
290
+ - Removed Geweke diagnostic ([1545](https://github.com/arviz-devs/arviz/pull/1545))
291
+ - Removed credible_interval and include_circ arguments ([1548](https://github.com/arviz-devs/arviz/pull/1548))
292
+
293
+ ### Documentation
294
+
295
+ - Added an example for converting dataframe to InferenceData ([1556](https://github.com/arviz-devs/arviz/pull/1556))
296
+ - Added example for `coords` argument in `plot_posterior` docstring ([1566](https://github.com/arviz-devs/arviz/pull/1566))
297
+
298
+ ## v0.11.1 (2021 Feb 2)
299
+
300
+ ### Maintenance and fixes
301
+
302
+ - Fixed ovelapping titles and repeating warnings on circular traceplot ([1517](https://github.com/arviz-devs/arviz/pull/1517))
303
+ - Removed repetitive variable names from forest plots of multivariate variables ([1527](https://github.com/arviz-devs/arviz/pull/1527))
304
+ - Fixed regression in `plot_pair` labels that prevented coord names to be shown when necessary ([1533](https://github.com/arviz-devs/arviz/pull/1533))
305
+
306
+ ### Documentation
307
+
308
+ - Use tabs in ArviZ example gallery ([1521](https://github.com/arviz-devs/arviz/pull/1521))
309
+
310
+ ## v0.11.0 (2021 Dec 17)
311
+
312
+ ### New features
313
+
314
+ - Added `to_dataframe` method to InferenceData ([1395](https://github.com/arviz-devs/arviz/pull/1395))
315
+ - Added `__getitem__` magic to InferenceData ([1395](https://github.com/arviz-devs/arviz/pull/1395))
316
+ - Added group argument to summary ([1408](https://github.com/arviz-devs/arviz/pull/1408))
317
+ - Add `ref_line`, `bar`, `vlines` and `marker_vlines` kwargs to `plot_rank` ([1419](https://github.com/arviz-devs/arviz/pull/1419))
318
+ - Add observed argument to (un)plot observed data in `plot_ppc` ([1422](https://github.com/arviz-devs/arviz/pull/1422))
319
+ - Add support for named dims and coordinates with multivariate observations ([1429](https://github.com/arviz-devs/arviz/pull/1429))
320
+ - Add support for discrete variables in rank plots ([1433](https://github.com/arviz-devs/arviz/pull/1433)) and
321
+ `loo_pit` ([1500](https://github.com/arviz-devs/arviz/pull/1500))
322
+ - Add `skipna` argument to `plot_posterior` ([1432](https://github.com/arviz-devs/arviz/pull/1432))
323
+ - Make stacking the default method to compute weights in `compare` ([1438](https://github.com/arviz-devs/arviz/pull/1438))
324
+ - Add `copy()` method to `InferenceData` class. ([1501](https://github.com/arviz-devs/arviz/pull/1501)).
325
+
326
+ ### Maintenance and fixes
327
+
328
+ - prevent wrapping group names in InferenceData repr_html ([1407](https://github.com/arviz-devs/arviz/pull/1407))
329
+ - Updated CmdStanPy interface ([1409](https://github.com/arviz-devs/arviz/pull/1409))
330
+ - Remove left out warning about default IC scale in `compare` ([1412](https://github.com/arviz-devs/arviz/pull/1412))
331
+ - Fixed a typo found in an error message raised in `distplot.py` ([1414](https://github.com/arviz-devs/arviz/pull/1414))
332
+ - Fix typo in `loo_pit` extraction of log likelihood ([1418](https://github.com/arviz-devs/arviz/pull/1418))
333
+ - Have `from_pystan` store attrs as strings to allow netCDF storage ([1417](https://github.com/arviz-devs/arviz/pull/1417))
334
+ - Remove ticks and spines in `plot_violin` ([1426 ](https://github.com/arviz-devs/arviz/pull/1426))
335
+ - Use circular KDE function and fix tick labels in circular `plot_trace` ([1428](https://github.com/arviz-devs/arviz/pull/1428))
336
+ - Fix `pair_plot` for mixed discrete and continuous variables ([1434](https://github.com/arviz-devs/arviz/pull/1434))
337
+ - Fix in-sample deviance in `plot_compare` ([1435](https://github.com/arviz-devs/arviz/pull/1435))
338
+ - Fix computation of weights in compare ([1438](https://github.com/arviz-devs/arviz/pull/1438))
339
+ - Avoid repeated warning in summary ([1442](https://github.com/arviz-devs/arviz/pull/1442))
340
+ - Fix hdi failure with boolean array ([1444](https://github.com/arviz-devs/arviz/pull/1444))
341
+ - Automatically get the current axes instance for `plt_kde`, `plot_dist` and `plot_hdi` ([1452](https://github.com/arviz-devs/arviz/pull/1452))
342
+ - Add grid argument to manually specify the number of rows and columns ([1459](https://github.com/arviz-devs/arviz/pull/1459))
343
+ - Switch to `compact=True` by default in our plots ([1468](https://github.com/arviz-devs/arviz/issues/1468))
344
+ - `plot_elpd`, avoid modifying the input dict ([1477](https://github.com/arviz-devs/arviz/issues/1477))
345
+ - Do not plot divergences in `plot_trace` when `kind=rank_vlines` or `kind=rank_bars` ([1476](https://github.com/arviz-devs/arviz/issues/1476))
346
+ - Allow ignoring `observed` argument of `pymc3.DensityDist` in `from_pymc3` ([1495](https://github.com/arviz-devs/arviz/pull/1495))
347
+ - Make `from_pymc3` compatible with theano-pymc 1.1.0 ([1495](https://github.com/arviz-devs/arviz/pull/1495))
348
+ - Improve typing hints ([1491](https://github.com/arviz-devs/arviz/pull/1491), ([1492](https://github.com/arviz-devs/arviz/pull/1492),
349
+ ([1493](https://github.com/arviz-devs/arviz/pull/1493), ([1494](https://github.com/arviz-devs/arviz/pull/1494) and
350
+ ([1497](https://github.com/arviz-devs/arviz/pull/1497))
351
+
352
+ ### Deprecation
353
+
354
+ - `plot_khat` deprecate `annotate` argument in favor of `threshold`. The new argument accepts floats ([1478](https://github.com/arviz-devs/arviz/issues/1478))
355
+
356
+ ### Documentation
357
+
358
+ - Reorganize documentation and change sphinx theme ([1406](https://github.com/arviz-devs/arviz/pull/1406))
359
+ - Switch to [MyST](https://myst-parser.readthedocs.io/en/latest/) and [MyST-NB](https://myst-nb.readthedocs.io/en/latest/index.html)
360
+ for markdown/notebook parsing in docs ([1406](https://github.com/arviz-devs/arviz/pull/1406))
361
+ - Incorporated `input_core_dims` in `hdi` and `plot_hdi` docstrings ([1410](https://github.com/arviz-devs/arviz/pull/1410))
362
+ - Add documentation pages about experimental `SamplingWrapper`s usage ([1373](https://github.com/arviz-devs/arviz/pull/1373))
363
+ - Show example titles in gallery page ([1484](https://github.com/arviz-devs/arviz/pull/1484))
364
+ - Add `sample_stats` naming convention to the InferenceData schema ([1063](https://github.com/arviz-devs/arviz/pull/1063))
365
+ - Extend api documentation about `InferenceData` methods ([1338](https://github.com/arviz-devs/arviz/pull/1338))
366
+
367
+ ### Experimental
368
+
369
+ - Modified `SamplingWrapper` base API ([1373](https://github.com/arviz-devs/arviz/pull/1373))
370
+
371
+ ## v0.10.0 (2020 Sep 24)
372
+
373
+ ### New features
374
+
375
+ - Added InferenceData dataset containing circular variables ([1265](https://github.com/arviz-devs/arviz/pull/1265))
376
+ - Added `is_circular` argument to `plot_dist` and `plot_kde` allowing for a circular histogram (Matplotlib, Bokeh) or 1D KDE plot (Matplotlib). ([1266](https://github.com/arviz-devs/arviz/pull/1266))
377
+ - Added `to_dict` method for InferenceData object ([1223](https://github.com/arviz-devs/arviz/pull/1223))
378
+ - Added `circ_var_names` argument to `plot_trace` allowing for circular traceplot (Matplotlib) ([1336](https://github.com/arviz-devs/arviz/pull/1336))
379
+ - Ridgeplot is hdi aware. By default displays truncated densities at the specified `hdi_prop` level ([1348](https://github.com/arviz-devs/arviz/pull/1348))
380
+ - Added `plot_separation` ([1359](https://github.com/arviz-devs/arviz/pull/1359))
381
+ - Extended methods from `xr.Dataset` to `InferenceData` ([1254](https://github.com/arviz-devs/arviz/pull/1254))
382
+ - Add `extend` and `add_groups` to `InferenceData` ([1300](https://github.com/arviz-devs/arviz/pull/1300) and [1386](https://github.com/arviz-devs/arviz/pull/1386))
383
+ - Added `__iter__` method (`.items`) for InferenceData ([1356](https://github.com/arviz-devs/arviz/pull/1356))
384
+ - Add support for discrete variables in `plot_bpv` ([#1379](https://github.com/arviz-devs/arviz/pull/1379))
385
+
386
+ ### Maintenance and fixes
387
+
388
+ - Automatic conversion of list/tuple to numpy array in distplot ([1277](https://github.com/arviz-devs/arviz/pull/1277))
389
+ - `plot_posterior` fix overlap of hdi and rope ([1263](https://github.com/arviz-devs/arviz/pull/1263))
390
+ - `plot_dist` bins argument error fixed ([1306](https://github.com/arviz-devs/arviz/pull/1306))
391
+ - Improve handling of circular variables in `az.summary` ([1313](https://github.com/arviz-devs/arviz/pull/1313))
392
+ - Removed change of default warning in `ELPDData` string representation ([1321](https://github.com/arviz-devs/arviz/pull/1321))
393
+ - Update `radon` example dataset to current InferenceData schema specification ([1320](https://github.com/arviz-devs/arviz/pull/1320))
394
+ - Update `from_cmdstan` functionality and add warmup groups ([1330](https://github.com/arviz-devs/arviz/pull/1330) and [1351](https://github.com/arviz-devs/arviz/pull/1351))
395
+ - Restructure plotting code to be compatible with mpl>=3.3 ([1312](https://github.com/arviz-devs/arviz/pull/1312) and [1352](https://github.com/arviz-devs/arviz/pull/1352))
396
+ - Replaced `_fast_kde()` with `kde()` which now also supports circular variables via the argument `circular` ([1284](https://github.com/arviz-devs/arviz/pull/1284)).
397
+ - Increased `from_pystan` attrs information content ([1353](https://github.com/arviz-devs/arviz/pull/1353))
398
+ - Allow `plot_trace` to return and accept axes ([1361](https://github.com/arviz-devs/arviz/pull/1361))
399
+ - Update diagnostics to be on par with posterior package ([1366](https://github.com/arviz-devs/arviz/pull/1366))
400
+ - Use method="average" in `scipy.stats.rankdata` ([1380](https://github.com/arviz-devs/arviz/pull/1380))
401
+ - Add more `plot_parallel` examples ([1380](https://github.com/arviz-devs/arviz/pull/1380))
402
+ - Bump minimum xarray version to 0.16.1 ([1389](https://github.com/arviz-devs/arviz/pull/1389)
403
+ - Fix multi rope for `plot_forest` ([1390](https://github.com/arviz-devs/arviz/pull/1390))
404
+ - Bump minimum xarray version to 0.16.1 ([1389](https://github.com/arviz-devs/arviz/pull/1389))
405
+ - `from_dict` will now store warmup groups even with the main group missing ([1386](https://github.com/arviz-devs/arviz/pull/1386))
406
+ - increase robustness for repr_html handling ([1392](https://github.com/arviz-devs/arviz/pull/1392))
407
+
408
+ ## v0.9.0 (2020 June 23)
409
+
410
+ ### New features
411
+
412
+ - loo-pit plot. The kde is computed over the data interval (this could be shorter than [0, 1]). The HDI is computed analytically ([1215](https://github.com/arviz-devs/arviz/pull/1215))
413
+ - Added `html_repr` of InferenceData objects for jupyter notebooks. ([1217](https://github.com/arviz-devs/arviz/pull/1217))
414
+ - Added support for PyJAGS via the function `from_pyjags`. ([1219](https://github.com/arviz-devs/arviz/pull/1219) and [1245](https://github.com/arviz-devs/arviz/pull/1245))
415
+ - `from_pymc3` can now retrieve `coords` and `dims` from model context ([1228](https://github.com/arviz-devs/arviz/pull/1228), [1240](https://github.com/arviz-devs/arviz/pull/1240) and [1249](https://github.com/arviz-devs/arviz/pull/1249))
416
+ - `plot_trace` now supports multiple aesthetics to identify chain and variable
417
+ shape and support matplotlib aliases ([1253](https://github.com/arviz-devs/arviz/pull/1253))
418
+ - `plot_hdi` can now take already computed HDI values ([1241](https://github.com/arviz-devs/arviz/pull/1241))
419
+ - `plot_bpv`. A new plot for Bayesian p-values ([1222](https://github.com/arviz-devs/arviz/pull/1222))
420
+
421
+ ### Maintenance and fixes
422
+
423
+ - Include data from `MultiObservedRV` to `observed_data` when using
424
+ `from_pymc3` ([1098](https://github.com/arviz-devs/arviz/pull/1098))
425
+ - Added a note on `plot_pair` when trying to use `plot_kde` on `InferenceData`
426
+ objects. ([1218](https://github.com/arviz-devs/arviz/pull/1218))
427
+ - Added `log_likelihood` argument to `from_pyro` and a warning if log likelihood cannot be obtained ([1227](https://github.com/arviz-devs/arviz/pull/1227))
428
+ - Skip tests on matplotlib animations if ffmpeg is not installed ([1227](https://github.com/arviz-devs/arviz/pull/1227))
429
+ - Fix hpd bug where arguments were being ignored ([1236](https://github.com/arviz-devs/arviz/pull/1236))
430
+ - Remove false positive warning in `plot_hdi` and fixed matplotlib axes generation ([1241](https://github.com/arviz-devs/arviz/pull/1241))
431
+ - Change the default `zorder` of scatter points from `0` to `0.6` in `plot_pair` ([1246](https://github.com/arviz-devs/arviz/pull/1246))
432
+ - Update `get_bins` for numpy 1.19 compatibility ([1256](https://github.com/arviz-devs/arviz/pull/1256))
433
+ - Fixes to `rug`, `divergences` arguments in `plot_trace` ([1253](https://github.com/arviz-devs/arviz/pull/1253))
434
+
435
+ ### Deprecation
436
+
437
+ - Using `from_pymc3` without a model context available now raises a
438
+ `FutureWarning` and will be deprecated in a future version ([1227](https://github.com/arviz-devs/arviz/pull/1227))
439
+ - In `plot_trace`, `chain_prop` and `compact_prop` as tuples will now raise a
440
+ `FutureWarning` ([1253](https://github.com/arviz-devs/arviz/pull/1253))
441
+ - `hdi` with 2d data raises a FutureWarning ([1241](https://github.com/arviz-devs/arviz/pull/1241))
442
+
443
+ ### Documentation
444
+
445
+ - A section has been added to the documentation at InferenceDataCookbook.ipynb illustrating the use of ArviZ in conjunction with PyJAGS. ([1219](https://github.com/arviz-devs/arviz/pull/1219) and [1245](https://github.com/arviz-devs/arviz/pull/1245))
446
+ - Fixed inconsistent capitalization in `plot_hdi` docstring ([1221](https://github.com/arviz-devs/arviz/pull/1221))
447
+ - Fixed and extended `InferenceData.map` docs ([1255](https://github.com/arviz-devs/arviz/pull/1255))
448
+
449
+ ## v0.8.3 (2020 May 28)
450
+
451
+ ### Maintenance and fixes
452
+
453
+ - Restructured internals of `from_pymc3` to handle old pymc3 releases and
454
+ sliced traces and to provide useful warnings ([1211](https://github.com/arviz-devs/arviz/pull/1211))
455
+
456
+ ## v0.8.2 (2020 May 25)
457
+
458
+ ### Maintenance and fixes
459
+
460
+ - Fixed bug in `from_pymc3` for sliced `pymc3.MultiTrace` input ([1209](https://github.com/arviz-devs/arviz/pull/1209))
461
+
462
+ ## v0.8.1 (2020 May 24)
463
+
464
+ ### Maintenance and fixes
465
+
466
+ - Fixed bug in `from_pymc3` when used with PyMC3<3.9 ([1203](https://github.com/arviz-devs/arviz/pull/1203))
467
+ - Fixed enforcement of rcParam `plot.max_subplots` in `plot_trace` and
468
+ `plot_pair` ([1205](https://github.com/arviz-devs/arviz/pull/1205))
469
+ - Removed extra subplot row and column in in `plot_pair` with `marginal=True` ([1205](https://github.com/arviz-devs/arviz/pull/1205))
470
+ - Added latest PyMC3 release to CI in addition to using GitHub default branch ([1207](https://github.com/arviz-devs/arviz/pull/1207))
471
+
472
+ ### Documentation
473
+
474
+ - Use `dev` as version indicator in online documentation ([1204](https://github.com/arviz-devs/arviz/pull/1204))
475
+
476
+ ## v0.8.0 (2020 May 23)
477
+
478
+ ### New features
479
+
480
+ - Stats and plotting functions that provide `var_names` arg can now filter parameters based on partial naming (`filter="like"`) or regular expressions (`filter="regex"`) (see [1154](https://github.com/arviz-devs/arviz/pull/1154)).
481
+ - Add `true_values` argument for `plot_pair`. It allows for a scatter plot showing the true values of the variables ([1140](https://github.com/arviz-devs/arviz/pull/1140))
482
+ - Allow xarray.Dataarray input for plots.([1120](https://github.com/arviz-devs/arviz/pull/1120))
483
+ - Revamped the `hpd` function to make it work with mutidimensional arrays, InferenceData and xarray objects ([1117](https://github.com/arviz-devs/arviz/pull/1117))
484
+ - Skip test for optional/extra dependencies when not installed ([1113](https://github.com/arviz-devs/arviz/pull/1113))
485
+ - Add option to display rank plots instead of trace ([1134](https://github.com/arviz-devs/arviz/pull/1134))
486
+ - Add out-of-sample groups (`predictions` and `predictions_constant_data`) to `from_dict` ([1125](https://github.com/arviz-devs/arviz/pull/1125))
487
+ - Add out-of-sample groups (`predictions` and `predictions_constant_data`) and `constant_data` group to pyro and numpyro translation ([1090](https://github.com/arviz-devs/arviz/pull/1090), [1125](https://github.com/arviz-devs/arviz/pull/1125))
488
+ - Add `num_chains` and `pred_dims` arguments to from_pyro and from_numpyro ([1090](https://github.com/arviz-devs/arviz/pull/1090), [1125](https://github.com/arviz-devs/arviz/pull/1125))
489
+ - Integrate jointplot into pairplot, add point-estimate and overlay of plot kinds ([1079](https://github.com/arviz-devs/arviz/pull/1079))
490
+ - New grayscale style. This also add two new cmaps `cet_grey_r` and `cet_grey_r`. These are perceptually uniform gray scale cmaps from colorcet (linear_grey_10_95_c0) ([1164](https://github.com/arviz-devs/arviz/pull/1164))
491
+ - Add warmup groups to InferenceData objects, initial support for PyStan ([1126](https://github.com/arviz-devs/arviz/pull/1126)) and PyMC3 ([1171](https://github.com/arviz-devs/arviz/pull/1171))
492
+ - `hdi_prob` will not plot hdi if argument `hide` is passed. Previously `credible_interval` would omit HPD if `None` was passed ([1176](https://github.com/arviz-devs/arviz/pull/1176))
493
+ - Add `stats.ic_pointwise` rcParam ([1173](https://github.com/arviz-devs/arviz/pull/1173))
494
+ - Add `var_name` argument to information criterion calculation: `compare`,
495
+ `loo` and `waic` ([1173](https://github.com/arviz-devs/arviz/pull/1173))
496
+
497
+ ### Maintenance and fixes
498
+
499
+ - Fixed `plot_pair` functionality for two variables with bokeh backend ([1179](https://github.com/arviz-devs/arviz/pull/1179))
500
+ - Changed `diagonal` argument for `marginals` and fixed `point_estimate_marker_kwargs` in `plot_pair` ([1167](https://github.com/arviz-devs/arviz/pull/1167))
501
+ - Fixed behaviour of `credible_interval=None` in `plot_posterior` ([1115](https://github.com/arviz-devs/arviz/pull/1115))
502
+ - Fixed hist kind of `plot_dist` with multidimensional input ([1115](https://github.com/arviz-devs/arviz/pull/1115))
503
+ - Fixed `TypeError` in `transform` argument of `plot_density` and `plot_forest` when `InferenceData` is a list or tuple ([1121](https://github.com/arviz-devs/arviz/pull/1121))
504
+ - Fixed overlaid pairplots issue ([1135](https://github.com/arviz-devs/arviz/pull/1135))
505
+ - Update Docker building steps ([1127](https://github.com/arviz-devs/arviz/pull/1127))
506
+ - Updated benchmarks and moved to asv_benchmarks/benchmarks ([1142](https://github.com/arviz-devs/arviz/pull/1142))
507
+ - Moved `_fast_kde`, `_fast_kde_2d`, `get_bins` and `_sturges_formula` to `numeric_utils` and `get_coords` to `utils` ([1142](https://github.com/arviz-devs/arviz/pull/1142))
508
+ - Rank plot: rename `axes` argument to `ax` ([1144](https://github.com/arviz-devs/arviz/pull/1144))
509
+ - Added a warning specifying log scale is now the default in compare/loo/waic functions ([1150](https://github.com/arviz-devs/arviz/pull/1150)).
510
+ - Fixed bug in `plot_posterior` with rcParam "plot.matplotlib.show" = True ([1151](https://github.com/arviz-devs/arviz/pull/1151))
511
+ - Set `fill_last` argument of `plot_kde` to False by default ([1158](https://github.com/arviz-devs/arviz/pull/1158))
512
+ - plot_ppc animation: improve docs and error handling ([1162](https://github.com/arviz-devs/arviz/pull/1162))
513
+ - Fix import error when wrapped function docstring is empty ([1192](https://github.com/arviz-devs/arviz/pull/1192))
514
+ - Fix passing axes to plot_density with several datasets ([1198](https://github.com/arviz-devs/arviz/pull/1198))
515
+
516
+ ### Deprecation
517
+
518
+ - `hpd` function deprecated in favor of `hdi`. `credible_interval` argument replaced by `hdi_prob`throughout with exception of `plot_loo_pit` ([1176](https://github.com/arviz-devs/arviz/pull/1176))
519
+ - `plot_hpd` function deprecated in favor of `plot_hdi`. ([1190](https://github.com/arviz-devs/arviz/pull/1190))
520
+
521
+ ### Documentation
522
+
523
+ - Add classifier to `setup.py` including Matplotlib framework ([1133](https://github.com/arviz-devs/arviz/pull/1133))
524
+ - Image thumbs generation updated to be Bokeh 2 compatible ([1116](https://github.com/arviz-devs/arviz/pull/1116))
525
+ - Add new examples for `plot_pair` ([1110](https://github.com/arviz-devs/arviz/pull/1110))
526
+ - Add examples for `psislw` and `r2_score` ([1129](https://github.com/arviz-devs/arviz/pull/1129))
527
+ - Add more examples on 2D kde customization ([1158](https://github.com/arviz-devs/arviz/pull/1158))
528
+ - Make docs compatible with sphinx3 and configure `intersphinx` for better
529
+ references ([1184](https://github.com/arviz-devs/arviz/pull/1184))
530
+ - Extend the developer guide and add it to the website ([1184](https://github.com/arviz-devs/arviz/pull/1184))
531
+
532
+ ## v0.7.0 (2020 Mar 2)
533
+
534
+ ### New features
535
+
536
+ - Add out-of-sample predictions (`predictions` and `predictions_constant_data` groups) to pymc3, pystan, cmdstan and cmdstanpy translations ([983](https://github.com/arviz-devs/arviz/pull/983), [1032](https://github.com/arviz-devs/arviz/pull/1032) and [1064](https://github.com/arviz-devs/arviz/pull/1064))
537
+ - Started adding pointwise log likelihood storage support ([794](https://github.com/arviz-devs/arviz/pull/794), [1044](https://github.com/arviz-devs/arviz/pull/1044) and [1064](https://github.com/arviz-devs/arviz/pull/1064))
538
+ - Add out-of-sample predictions (`predictions` and `predictions_constant_data` groups) to pymc3 and pystan translations ([983](https://github.com/arviz-devs/arviz/pull/983) and [1032](https://github.com/arviz-devs/arviz/pull/1032))
539
+ - Started adding pointwise log likelihood storage support ([794](https://github.com/arviz-devs/arviz/pull/794), [1044](https://github.com/arviz-devs/arviz/pull/1044))
540
+ - Violinplot: rug-plot option ([997](https://github.com/arviz-devs/arviz/pull/997))
541
+ - Integrated rcParams `plot.point_estimate` ([994](https://github.com/arviz-devs/arviz/pull/994)), `stats.ic_scale` ([993](https://github.com/arviz-devs/arviz/pull/993)) and `stats.credible_interval` ([1017](https://github.com/arviz-devs/arviz/pull/1017))
542
+ - Added `group` argument to `plot_ppc` ([1008](https://github.com/arviz-devs/arviz/pull/1008)), `plot_pair` ([1009](https://github.com/arviz-devs/arviz/pull/1009)) and `plot_joint` ([1012](https://github.com/arviz-devs/arviz/pull/1012))
543
+ - Added `transform` argument to `plot_trace`, `plot_forest`, `plot_pair`, `plot_posterior`, `plot_rank`, `plot_parallel`, `plot_violin`,`plot_density`, `plot_joint` ([1036](https://github.com/arviz-devs/arviz/pull/1036))
544
+ - Add `skipna` argument to `hpd` and `summary` ([1035](https://github.com/arviz-devs/arviz/pull/1035))
545
+ - Added `transform` argument to `plot_trace`, `plot_forest`, `plot_pair`, `plot_posterior`, `plot_rank`, `plot_parallel`, `plot_violin`,`plot_density`, `plot_joint` ([1036](https://github.com/arviz-devs/arviz/pull/1036))
546
+ - Add `marker` functionality to `bokeh_plot_elpd` ([1040](https://github.com/arviz-devs/arviz/pull/1040))
547
+ - Add `ridgeplot_quantiles` argument to `plot_forest` ([1047](https://github.com/arviz-devs/arviz/pull/1047))
548
+ - Added the functionality [interactive legends](https://docs.bokeh.org/en/1.4.0/docs/user_guide/interaction/legends.html) for bokeh plots of `densityplot`, `energyplot`
549
+ and `essplot` ([1024](https://github.com/arviz-devs/arviz/pull/1024))
550
+ - New defaults for cross validation: `loo` (old: waic) and `log` -scale (old: `deviance` -scale) ([1067](https://github.com/arviz-devs/arviz/pull/1067))
551
+ - **Experimental Feature**: Added `arviz.wrappers` module to allow ArviZ to refit the models if necessary ([771](https://github.com/arviz-devs/arviz/pull/771))
552
+ - **Experimental Feature**: Added `reloo` function to ArviZ ([771](https://github.com/arviz-devs/arviz/pull/771))
553
+ - Added new helper function `matplotlib_kwarg_dealiaser` ([1073](https://github.com/arviz-devs/arviz/pull/1073))
554
+ - ArviZ version to InferenceData attributes. ([1086](https://github.com/arviz-devs/arviz/pull/1086))
555
+ - Add `log_likelihood` argument to `from_pymc3` ([1082](https://github.com/arviz-devs/arviz/pull/1082))
556
+ - Integrated rcParams for `plot.bokeh.layout` and `plot.backend`. ([1089](https://github.com/arviz-devs/arviz/pull/1089))
557
+ - Add automatic legends in `plot_trace` with compact=True (matplotlib only) ([1070](https://github.com/arviz-devs/arviz/pull/1070))
558
+ - Updated hover information for `plot_pair` with bokeh backend ([1074](https://github.com/arviz-devs/arviz/pull/1074))
559
+
560
+ ### Maintenance and fixes
561
+
562
+ - Fixed bug in density and posterior plot bin computation ([1049](https://github.com/arviz-devs/arviz/pull/1049))
563
+ - Fixed bug in density plot ax argument ([1049](https://github.com/arviz-devs/arviz/pull/1049))
564
+ - Fixed bug in extracting prior samples for cmdstanpy ([979](https://github.com/arviz-devs/arviz/pull/979))
565
+ - Fix erroneous warning in traceplot ([989](https://github.com/arviz-devs/arviz/pull/989))
566
+ - Correct bfmi denominator ([991](https://github.com/arviz-devs/arviz/pull/991))
567
+ - Removed parallel from jit full ([996](https://github.com/arviz-devs/arviz/pull/996))
568
+ - Rename flat_inference_data_to_dict ([1003](https://github.com/arviz-devs/arviz/pull/1003))
569
+ - Violinplot: fix histogram ([997](https://github.com/arviz-devs/arviz/pull/997))
570
+ - Convert all instances of SyntaxWarning to UserWarning ([1016](https://github.com/arviz-devs/arviz/pull/1016))
571
+ - Fix `point_estimate` in `plot_posterior` ([1038](https://github.com/arviz-devs/arviz/pull/1038))
572
+ - Fix interpolation `hpd_plot` ([1039](https://github.com/arviz-devs/arviz/pull/1039))
573
+ - Fix `io_pymc3.py` to handle models with `potentials` ([1043](https://github.com/arviz-devs/arviz/pull/1043))
574
+ - Fix several inconsistencies between schema and `from_pymc3` implementation
575
+ in groups `prior`, `prior_predictive` and `observed_data` ([1045](https://github.com/arviz-devs/arviz/pull/1045))
576
+ - Stabilize covariance matrix for `plot_kde_2d` ([1075](https://github.com/arviz-devs/arviz/pull/1075))
577
+ - Removed extra dim in `prior` data in `from_pyro` ([1071](https://github.com/arviz-devs/arviz/pull/1071))
578
+ - Moved CI and docs (build & deploy) to Azure Pipelines and started using codecov ([1080](https://github.com/arviz-devs/arviz/pull/1080))
579
+ - Fixed bug in densityplot when variables differ between models ([1096](https://github.com/arviz-devs/arviz/pull/1096))
580
+
581
+ ### Deprecation
582
+
583
+ - `from_pymc3` now requires PyMC3>=3.8
584
+
585
+ ### Documentation
586
+
587
+ - Updated `InferenceData` schema specification (`log_likelihood`,
588
+ `predictions` and `predictions_constant_data` groups)
589
+ - Clarify the usage of `plot_joint` ([1001](https://github.com/arviz-devs/arviz/pull/1001))
590
+ - Added the API link of function to examples ([1013](https://github.com/arviz-devs/arviz/pull/1013))
591
+ - Updated PyStan_schema_example to include example of out-of-sample prediction ([1032](https://github.com/arviz-devs/arviz/pull/1032))
592
+ - Added example for `concat` method ([1037](https://github.com/arviz-devs/arviz/pull/1037))
593
+
594
+ ## v0.6.1 (2019 Dec 28)
595
+
596
+ ### New features
597
+
598
+ - Update for pair_plot divergences can be selected
599
+ - Default tools follow global (ArviZ) defaults
600
+ - Add interactive legend for a plot, if only two variables are used in pairplot
601
+
602
+ ### Maintenance and fixes
603
+
604
+ - Change `packaging` import from absolute to relative format, explicitly importing `version` function
605
+
606
+ ## v0.6.0 (2019 Dec 24)
607
+
608
+ ### New features
609
+
610
+ - Initial bokeh support.
611
+ - ArviZ.jl a Julia interface to ArviZ (@sethaxen )
612
+
613
+ ### Maintenance and fixes
614
+
615
+ - Fully support `numpyro` (@fehiepsi )
616
+ - log_likelihood and observed data from pyro
617
+ - improve rcparams
618
+ - fix `az.concat` functionality (@anzelpwj )
619
+
620
+ ### Documentation
621
+
622
+ - distplot docstring plotting example (@jscarbor )
623
+
624
+ ## v0.5.1 (2019 Sep 16)
625
+
626
+ ### Maintenance and fixes
627
+
628
+ - Comment dev requirements in setup.py
629
+
630
+ ## v0.5.0 (2019 Sep 15)
631
+
632
+ ## New features
633
+
634
+ - Add from_numpyro Integration ([811](https://github.com/arviz-devs/arviz/pull/811))
635
+ - Numba Google Summer of Code additions (https://ban-zee.github.io/jekyll/update/2019/08/19/Submission.html)
636
+ - Model checking, Inference Data, and Convergence assessments (https://github.com/OriolAbril/gsoc2019/blob/master/final_work_submission.md)
637
+
638
+ ## v0.4.1 (2019 Jun 9)
639
+
640
+ ### New features
641
+
642
+ - Reorder stats columns ([695](https://github.com/arviz-devs/arviz/pull/695))
643
+ - Plot Forest reports ess and rhat by default([685](https://github.com/arviz-devs/arviz/pull/685))
644
+ - Add pointwise elpd ([678](https://github.com/arviz-devs/arviz/pull/678))
645
+
646
+ ### Maintenance and fixes
647
+
648
+ - Fix io_pymc3 bug ([693](https://github.com/arviz-devs/arviz/pull/693))
649
+ - Fix io_pymc3 warning ([686](https://github.com/arviz-devs/arviz/pull/686))
650
+ - Fix 0 size bug with pystan ([677](https://github.com/arviz-devs/arviz/pull/677))
651
+
652
+ ## v0.4.0 (2019 May 20)
653
+
654
+ ### New features
655
+
656
+ - Add plot_dist ([592](https://github.com/arviz-devs/arviz/pull/592))
657
+ - New rhat and ess ([623](https://github.com/arviz-devs/arviz/pull/623))
658
+ - Add plot_hpd ([611](https://github.com/arviz-devs/arviz/pull/611))
659
+ - Add plot_rank ([625](https://github.com/arviz-devs/arviz/pull/625))
660
+
661
+ ### Deprecation
662
+
663
+ - Remove load_data and save_data ([625](https://github.com/arviz-devs/arviz/pull/625))
664
+
665
+ ## v0.3.3 (2019 Feb 23)
666
+
667
+ ### New features
668
+
669
+ - Plot ppc supports multiple chains ([526](https://github.com/arviz-devs/arviz/pull/526))
670
+ - Plot titles now wrap ([441](https://github.com/arviz-devs/arviz/pull/441))
671
+ - plot_density uses a grid ([379](https://github.com/arviz-devs/arviz/pull/379))
672
+ - emcee reader support ([550](https://github.com/arviz-devs/arviz/pull/550))
673
+ - Animations in plot_ppc ([546](https://github.com/arviz-devs/arviz/pull/546))
674
+ - Optional dictionary for stat_funcs in summary ([583](https://github.com/arviz-devs/arviz/pull/583))
675
+ - Can exclude variables in selections with negated variable names ([574](https://github.com/arviz-devs/arviz/pull/574))
676
+
677
+ ### Maintenance and fixes
678
+
679
+ - Order maintained with xarray_var_iter ([557](https://github.com/arviz-devs/arviz/pull/557))
680
+ - Testing very improved (multiple)
681
+ - Fix nan handling in effective sample size ([573](https://github.com/arviz-devs/arviz/pull/573))
682
+ - Fix kde scaling ([582](https://github.com/arviz-devs/arviz/pull/582))
683
+ - xticks for discrete variables ([586](https://github.com/arviz-devs/arviz/pull/586))
684
+ - Empty InferenceData saves consistent with netcdf ([577](https://github.com/arviz-devs/arviz/pull/577))
685
+ - Removes numpy pinning ([594](https://github.com/arviz-devs/arviz/pull/594))
686
+
687
+ ### Documentation
688
+
689
+ - JOSS and Zenodo badges ([537](https://github.com/arviz-devs/arviz/pull/537))
690
+ - Gitter badge ([548](https://github.com/arviz-devs/arviz/pull/548))
691
+ - Docs for combining InferenceData ([590](https://github.com/arviz-devs/arviz/pull/590))
692
+
693
+ ## v0.3.2 (2019 Jan 15)
694
+
695
+ ### New features
696
+
697
+ - Support PyStan3 ([464](https://github.com/arviz-devs/arviz/pull/464))
698
+ - Add some more information to the inference data of tfp ([447](https://github.com/arviz-devs/arviz/pull/447))
699
+ - Use Split R-hat ([477](https://github.com/arviz-devs/arviz/pull/477))
700
+ - Normalize from_xyz functions ([490](https://github.com/arviz-devs/arviz/pull/490))
701
+ - KDE: Display quantiles ([479](https://github.com/arviz-devs/arviz/pull/479))
702
+ - Add multiple rope support to `plot_forest` ([448](https://github.com/arviz-devs/arviz/pull/448))
703
+ - Numba jit compilation to speed up some methods ([515](https://github.com/arviz-devs/arviz/pull/515))
704
+ - Add `from_dict` for easier creation of az.InferenceData objects ([524](https://github.com/arviz-devs/arviz/pull/524))
705
+ - Add stable logsumexp ([522](https://github.com/arviz-devs/arviz/pull/522))
706
+
707
+ ### Maintenance and fixes
708
+
709
+ - Fix for `from_pyro` with multiple chains ([463](https://github.com/arviz-devs/arviz/pull/463))
710
+ - Check `__version__` for attr ([466](https://github.com/arviz-devs/arviz/pull/466))
711
+ - And exception to plot compare ([461](https://github.com/arviz-devs/arviz/pull/461))
712
+ - Add Docker Testing to travisCI ([473](https://github.com/arviz-devs/arviz/pull/473))
713
+ - fix jointplot warning ([478](https://github.com/arviz-devs/arviz/pull/478))
714
+ - Fix tensorflow import bug ([489](https://github.com/arviz-devs/arviz/pull/489))
715
+ - Rename N_effective to S_effective ([505](https://github.com/arviz-devs/arviz/pull/505))
716
+
717
+ ### Documentation
718
+
719
+ - Add docs to plot compare ([461](https://github.com/arviz-devs/arviz/pull/461))
720
+ - Add InferenceData tutorial in header ([502](https://github.com/arviz-devs/arviz/pull/502))
721
+ - Added figure to InferenceData tutorial ([510](https://github.com/arviz-devs/arviz/pull/510))
722
+
723
+ ## v0.3.1 (2018 Dec 18)
724
+
725
+ ### Maintenance and fixes
726
+
727
+ - Fix installation problem with release 0.3.0
728
+
729
+ ## v0.3.0 (2018 Dec 14)
730
+
731
+ - First Beta Release