smooth.ES.confint
- ES.confint(parm=None, level=0.95, type=None, bootstrap=False, step_size=None, **boot_kwargs)
Confidence intervals for the estimated parameters.
Mirrors R’s
confint.adam: standard errors fromvcov(), t-interval half-widths (with R’s asymmetric degrees of freedom), then clamping to the admissible region for ETS smoothing parameters (bounds="usual"or"admissible"), multiplicative initial states, and ARIMA AR/MA parameters. Withbootstrap=Truethe intervals are the empirical quantiles of the replicate matrix returned bycoefbootstrap()(no clamping / no t-quantile).- Parameters:
parm (str or sequence of str, optional) – Subset of names to return.
level (float, default=0.95) – Confidence level.
bootstrap (bool, default=False) – Switch to empirical-quantile intervals via
coefbootstrap().step_size (float, optional) – Finite-difference step forwarded to
vcov()for the Fisher-based path. Ignored whenbootstrap=True.**boot_kwargs – Forwarded to
coefbootstrap()(nsim,size, …).
- Returns:
Columns
["S.E.", "<lo>%", "<hi>%"]indexed bycoef_names.- Return type:
pandas.DataFrame
Parent Class: ES