Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add note on plot_pair to plot_kde(InferenceData) ValueError #1218

Merged
merged 2 commits into from
Jun 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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