pypomp.Pomp.results¶
- Pomp.results(index: int = -1, ignore_nan: bool = False) DataFrame¶
Return a summary DataFrame for one run from the results history.
Retrieves the final log-likelihoods and parameter values for all replicates associated with the run at position
indexinresults_history.- Parameters:
index (int, optional) – Position in
results_historyto retrieve. Defaults to-1(the most recent run).ignore_nan (bool, optional) – If
True, NaN log-likelihoods are excluded when computing the summary. Defaults toFalse.
- Returns:
Tidy DataFrame with columns
logLikand one column per parameter, indexed bytheta_idx.- Return type:
See also
pypomp.core.results.Result.to_dataframeDataframe returned by
Resultclass.