pastas.modelstats.Statistics#
- class pastas.modelstats.Statistics(ml: pastas.typing.Model)#
This class provides statistics to pastas Model class.
- Parameters:
ml (Pastas.model.Model) – ml is a time series Model that is calibrated.
Notes
To obtain a list of all statistics that are included type:
>>> print(ml.stats.ops)
Methods#
|
Root mean squared error of the residuals. |
|
Root mean squared error of the noise. |
|
Sum of the squares of the error (SSE) |
|
Mean Absolute Error (MAE) of the residuals. |
|
Nash-Sutcliffe Efficiency for model fit . |
|
Normalized Nash-Sutcliffe Efficiency for model fit . |
|
Compute the (weighted) Pearson correlation (r). |
|
Explained variance percentage. |
|
R-squared. |
|
Kling-Gupta Efficiency. |
|
Kling-Gupta Efficiency. |
|
Bayesian Information Criterium (BIC). |
|
Akaike Information Criterium (AIC). |
|
Akaike Information Criterium with second order bias correction (AICc). |
|
Returns a Pandas DataFrame with goodness-of-fit metrics. |
|
Methods to compute various diagnostics checks for the noise time series. If |