ResultsΒΆ

Results objects in pypomp are structured dataclasses that store the output of algorithmic methods, including log-likelihood estimates, parameter traces, and diagnostic information.

Each Pomp and PanelPomp object maintains a ResultsHistory that automatically records the outcome of every method call (e.g., pfilter, mif, train). In addition to accessing the stored values directly, you can access these results as tidy pandas DataFrames via the results() and traces() methods.

Results History

ResultsHistory

Stores and manages a history of results from multiple pypomp runs.

Pomp Results

PompPFilterResult

Result from Pomp.pfilter() method.

PompMIFResult

Result from Pomp.mif() method.

PompTrainResult

Result from Pomp.train() method.

PanelPomp Results

PanelPompPFilterResult

Result from PanelPomp.pfilter() method.

PanelPompMIFResult

Result from PanelPomp.mif() method.

PanelPompTrainResult

Result from PanelPomp.train() method.