CalibrationResult
Bases: object
A class to store fit results and statistics
Initialize the class
| Parameters: |
|
|---|
Examples:
>>> ...
>>> res = process.calibrate(data)
>>> print(res.get_summary())
method: str
property
Return the method attribute
observations: pd.DataFrame
property
Return the observations attribute
process
property
Return the process attribute
__repr__() -> str
Override the REPL output
__str__() -> str
Override the print output
get_summary() -> dict
Collect results and fit statistics:
* LogLikelihood: the log-likelihood
* n_params: number of model parameters
* n_observations: number of records used to estimate the parameters
* AIC: Akaike information criterion
* BIC: Bayesian information criterion
* HQC: Hannan–Quinn information criterion
| Returns: |
|
|---|
Examples:
>>> ...
>>> res = process.calibrate(data)
>>> res.get_summary()
show_estimated_correlation() -> go.Figure
Display the correlation obtained in the bootstrap procedure
| Returns: |
|
|---|
Examples:
>>> ...
>>> res = process.calibrate(data)
>>> res.show_estimated_correlation()
show_parameters() -> go.Figure
Display parameters and relative errors
| Returns: |
|
|---|
Examples:
>>> ...
>>> res = process.calibrate(data)
>>> res.show_parameters()