pypomp.maths.logmeanexp_se¶
- pypomp.maths.logmeanexp_se(x: Any, axis: None = None, ignore_nan: bool = False) float[source]¶
- pypomp.maths.logmeanexp_se(x: Any, axis: int, ignore_nan: bool = False) ndarray
Compute a jackknife standard error for the
logmeanexp()estimator.Estimates the standard error of the log-likelihood estimate produced by
logmeanexp()using the jackknife (leave-one-out) method.Note
numpy.stddivides byn(MLE), whereas R’ssddivides byn - 1(unbiased). This function matches the NumPy convention, so results will differ slightly from R’spomp::logmeanexpSE output.- Parameters:
- Returns:
The jackknife standard error.
np.nanif fewer than 2 values are present.- Return type:
float or np.ndarray
See also
logmeanexpThe estimator whose SE this computes.