Given an MCMC chain, returns the set of best fitting parameters (MLE)

get_best_pars(chain)

Arguments

chain

the MCMC chain

Value

a name vector of the best parameters

See also

Other mcmc_diagnostics: get_index_pars()

Examples

if (FALSE) { mcmc_chains <- load_theta_chains() best_pars <- get_best_pars(mcmc_chains$chain) }