Skip to content

Commit

Permalink
Add note on plot_pair to plot_kde(InferenceData) ValueError (#1218
Browse files Browse the repository at this point in the history
)

* Add note on plot_pair to plot_kde(InferenceData)

* Add PR number
  • Loading branch information
StanczakDominik authored Jun 1, 2020
1 parent ec33b4c commit 35affca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

### Maintenance and fixes

* Added a note on `plot_pair` when trying to use `plot_kde` on `InferenceData`
objects. (#1218)

### Deprecation

### Documentation
Expand Down
5 changes: 4 additions & 1 deletion arviz/plots/kdeplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,10 @@ def plot_kde(
"or plot_pair instead of plot_kde"
)
if isinstance(values, InferenceData):
raise ValueError(" Inference Data object detected. Use plot_posterior instead of plot_kde")
raise ValueError(
" Inference Data object detected. Use plot_posterior "
"or plot_pair instead of plot_kde"
)

if values2 is None:
density, lower, upper = _fast_kde(values, cumulative, bw)
Expand Down

0 comments on commit 35affca

Please sign in to comment.