get_aic_nb
- log-likelihood is the sum of the log-likelihood values in the input array,
kis the number of estimated parameters (assumed to be1in this implementation).
| Name | Type | Default | Description |
|---|---|---|---|
arr | tp.Array1d | -- | A one-dimensional array containing log-likelihood values. |
| Type | Description |
|---|---|
float | The computed AIC value if the input contains valid data; otherwise, NaN. |
get_bic_nb
loglikelihoodis the sum of the log-likelihood values in the input array,kis the number of estimated parameters (assumed to be1in this implementation),nis the number of observations (length of the input array).
| Name | Type | Default | Description |
|---|---|---|---|
arr | tp.Array1d | -- | A 1-dimensional array of log-likelihood values. |
| Type | Description |
|---|---|
float | The BIC value if valid data is provided. Returns NaN if the input array is empty or contains no valid data. |
get_aicc_nb
AICis the Akaike Information Criterion,kis the number of estimated parameters (assumed to be1in this implementation),nis the number of observations (length of the input array).
| Name | Type | Default | Description |
|---|---|---|---|
arr | tp.Array1d | -- | A 1-dimensional array of log-likelihood values. |
| Type | Description |
|---|---|
float | The AICc value if valid data is provided. Returns NaN if the input array is empty or contains no valid data. |

