This function generates prediction intervals that account for increasing uncertainty at longer forecast horizons. Each horizon h uses its own calibrated nonconformity score distribution, resulting in trumpet-shaped prediction intervals.
# S3 method for conformalRegressorByHorizon
predict(
object,
y_hat = NULL,
confidence = 0.95,
y_min = -Inf,
y_max = Inf,
...
)A data frame with lower and upper bounds for each confidence level
A conformalRegressorByHorizon object
Predicted values (one per horizon)
Confidence level(s) between 0 and 1 (e.g., 0.95 for 95 percent)
The minimum value to include in prediction intervals
The maximum value to include in prediction intervals
Ignored
Resul Akay