Skip to content

Commit

Permalink
Merge 1b1dab2 into c4270b5
Browse files Browse the repository at this point in the history
  • Loading branch information
canyon289 committed Sep 14, 2018
2 parents c4270b5 + 1b1dab2 commit cdf3127
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions examples/kdepairplot.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"""
KDE Pair Plot
=========
_thumb: .2, .5
"""
import arviz as az

az.style.use('arviz-darkgrid')

centered = az.load_arviz_data('centered_eight')

coords = {'school': ['Choate', 'Deerfield']}
az.pairplot(centered, var_names=['theta', 'mu', 'tau'], kind="kde", coords=coords, divergences=True)

0 comments on commit cdf3127

Please sign in to comment.