Skip to content

Commit

Permalink
update changelog and docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
OriolAbril committed Feb 23, 2021
1 parent 235d1db commit d95e976
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* Added `arviz.labels` module with classes and utilities ([1201](https://github.com/arviz-devs/arviz/pull/1201))
* Added probability estimate within ROPE in `plot_posterior` ([1570](https://github.com/arviz-devs/arviz/pull/1570))
* Added `rope_color` and `ref_val_color` arguments to `plot_posterior` ([1570](https://github.com/arviz-devs/arviz/pull/1570))
* Improved retrieving or pointwise log likelihood in `from_cmdstanpy` ([1579](https://github.com/arviz-devs/arviz/pull/1579))

### Maintenance and fixes
* Enforced using coordinate values as default labels ([1201](https://github.com/arviz-devs/arviz/pull/1201))
Expand Down
6 changes: 5 additions & 1 deletion arviz/data/io_cmdstanpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,11 @@ def from_cmdstanpy(
predictions_constant_data : dict
Constant data for predictions used in the sampling.
log_likelihood : str, list of str, dict of {str: str}
Pointwise log_likelihood for the data.
Pointwise log_likelihood for the data. If a dict, its keys should represent var_names
from the corresponding observed data and its values the stan variable where the
data is stored. By default, if a variable ``log_lik`` is present in the Stan model,
it will be retrieved as pointwise log likelihood values. Use ``False`` to avoid this
behaviour.
index_origin : int, optional
Starting value of integer coordinate values. Defaults to the value in rcParam
``data.index_origin``.
Expand Down

0 comments on commit d95e976

Please sign in to comment.