arviz_base.from_cmdstanpy#
- arviz_base.from_cmdstanpy(posterior=None, *, posterior_predictive=None, predictions=None, prior=None, prior_predictive=None, observed_data=None, constant_data=None, predictions_constant_data=None, log_likelihood=None, index_origin=None, coords=None, dims=None, save_warmup=None, dtypes=None)[source]#
Convert CmdStanPy data into an InferenceData object.
For a usage example read the Creating InferenceData section on from_cmdstanpy
- Parameters:
- posterior
cmdstanpy.CmdStanMCMC, optional CmdStanPy CmdStanMCMC
- posterior_predictive
strorlistofstr, optional Posterior predictive samples for the fit.
- predictions
strorlistofstr, optional Out of sample prediction samples for the fit.
- prior
cmdstanpy.CmdStanMCMC, optional CmdStanPy CmdStanMCMC
- prior_predictive
strorlistofstr, optional Prior predictive samples for the fit.
- observed_datamapping of {
strarray_like}, optional Observed data used in the sampling.
- constant_datamapping of {
strarray_like}, optional Constant data used in the sampling.
- predictions_constant_data
dict, optional Constant data for predictions used in the sampling.
- log_likelihood
strorlistofstrordictof {strstr}, optional 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_likis present in the Stan model, it will be retrieved as pointwise log likelihood values. UseFalseto avoid this behaviour.- index_origin
int, optional Starting value of integer coordinate values. Defaults to the value in rcParam
data.index_origin.- coords
dict, optional A dictionary containing the values that are used as index. The key is the name of the dimension, the values are the index values.
- dimsmapping of {hashablesequence of hashable}, optional
A mapping from variables to a list of coordinate names for the variable.
- save_warmupbool, optional
Save warmup iterations into InferenceData object, if found in the input files. If not defined, use default defined by the rcParams.
- dtypes
dict,strorcmdstanpy.CmdStanModel, optional A dictionary containing dtype information (int, float) for parameters. If input is a string, it is assumed to be a model code or path to model code file. Model code can be extracted from cmdstanpy.CmdStanModel object.
- posterior
- Returns: