plot_forecast¶
yohou.plotting.forecasting.plot_forecast(y_test=None, y_pred=None, *, y_train=None, columns=None, coverage_rates=None, n_history=None, groups=None, facet_by='member', facet_n_cols=2, color_palette=None, show_legend=True, title=None, x_label=None, y_label=None, width=None, height=None, connect_gaps=False, resampler=None, line_width=2.0, band_opacity=0.25, show_transition=True)
¶
Plot forecasts with historical data and optional prediction intervals.
Accepts separate DataFrames for actuals and predictions following an sklearn-like API. Automatically detects interval columns from y_pred when coverage_rates is provided.
When y_pred is a dict[str, pl.DataFrame], each entry is treated as
a separate model and plotted with a distinct color for side-by-side
comparison.
Categorical support: When y_pred contains class-probability
columns ({target}_proba_{class} pattern), renders a stacked area
chart of predicted probabilities with ground-truth class markers from
y_test. When y_pred contains categorical (string) columns, renders
a step chart comparing predicted and actual class labels over time.
Parameters¶
| Name | Type | Description | Default |
|---|---|---|---|
y_test
|
DataFrame | None
|
Actual test values with 'time' column. When |
None
|
y_pred
|
DataFrame | dict[str, DataFrame]
|
Forecast values with 'time' column. May also contain interval columns
named |
None
|
y_train
|
DataFrame | None
|
Historical training data with 'time' column. If provided, shown before the forecast period. |
None
|
columns
|
str | list[str] | None
|
Target column(s) to plot from y_test. When |
None
|
coverage_rates
|
list[float] | None
|
Coverage rates to display intervals for (e.g., [0.9, 0.95]).
Looks for |
None
|
n_history
|
int | None
|
Number of historical observations to show from y_train. If None, shows all. |
None
|
groups
|
list[str] | None
|
Panel group prefixes to plot. If None and panel data is detected, plots all groups. Creates faceted subplots. |
None
|
facet_by
|
Literal['group', 'member'] | None
|
Faceting axis for panel data. |
"member"
|
facet_n_cols
|
int
|
Number of columns in facet grid for panel data. |
2
|
color_palette
|
list[str] | None
|
Custom color palette. |
None
|
show_legend
|
bool
|
Whether to show the legend. |
True
|
title
|
str | None
|
Plot title. |
None
|
x_label
|
str | None
|
X-axis label. |
None
|
y_label
|
str | None
|
Y-axis label. |
None
|
width
|
int | None
|
Plot width in pixels. |
None
|
height
|
int | None
|
Plot height in pixels. |
None
|
connect_gaps
|
bool
|
Whether to connect gaps in the data with lines. |
False
|
resampler
|
bool | Literal['widget'] | None
|
Enable plotly-resampler for large datasets. |
None
|
line_width
|
float
|
Width of line traces. |
2.0
|
band_opacity
|
float
|
Opacity of prediction interval bands. |
0.25
|
show_transition
|
bool
|
Whether to show a dashed connector between the last training point and the first forecast point. |
True
|
Returns¶
| Type | Description |
|---|---|
Figure
|
Plotly figure object. |
Raises¶
| Type | Description |
|---|---|
TypeError
|
If inputs are not Polars DataFrames. |
ValueError
|
If DataFrames are empty or missing 'time' column. |
Examples¶
>>> # Create sample data
>>> y_train = pl.DataFrame({
... "time": pl.date_range(pl.date(2020, 1, 1), pl.date(2020, 3, 31), "1d", eager=True),
... "y": [100 + i for i in range(91)],
... })
>>> y_test = pl.DataFrame({
... "time": pl.date_range(pl.date(2020, 4, 1), pl.date(2020, 4, 30), "1d", eager=True),
... "y": [191 + i for i in range(30)],
... })
>>> y_pred = pl.DataFrame({
... "time": pl.date_range(pl.date(2020, 4, 1), pl.date(2020, 4, 30), "1d", eager=True),
... "y": [190 + i + (i % 3) for i in range(30)],
... })
Multi-model comparison:
>>> y_pred_b = pl.DataFrame({
... "time": pl.date_range(pl.date(2020, 4, 1), pl.date(2020, 4, 30), "1d", eager=True),
... "y": [192 + i for i in range(30)],
... })
>>> fig = plot_forecast(y_test, {"Model A": y_pred, "Model B": y_pred_b})
>>> len(fig.data) >= 3
True
See Also¶
plot_residuals : Plot residual diagnostics.
plot_score_per_step : Score by horizon step.
Source Code¶
Show/Hide source
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 | |
Tutorials¶
The following example notebooks use this component:
-
How to Tune Fourier Seasonality Terms
Data-Features
Explore how Fourier harmonic count affects seasonal fit quality, compare Fourier vs Pattern seasonality, and tune harmonics jointly with GridSearchCV.
-
How to Forecast with CatBoost
Forecasting-Models
Plug CatBoostRegressor into PointReductionForecaster as a drop-in sklearn estimator, compare gradient-boosted versus Ridge linear baseline, and demonstrate the direct reduction strategy with tree-based models.
-
How to Choose a Decomposition Strategy
Forecasting-Models
Build 2- and 3-component DecompositionPipeline forecasters chaining trend, seasonality, and residual models with target pre-transformation.
-
How to Use Lagged Forecasts as Features
Forecasting-Models
Compare ForecastedFeatureForecaster strategies (actual, predicted, rewind) and split ratio tuning for chaining feature and target forecasters.
-
Observe-Predict Workflow
Getting-Started
Walk through a test set in batches, updating forecasts as new data arrives with observe_predict.
-
Panel Data Forecasting
Getting-Started
Forecast multiple related time series simultaneously using the __ naming convention, LocalPanelForecaster, and per-group scoring.
-
How to Configure LocalPanelForecaster
Panel-Data
Wrap any forecaster with LocalPanelForecaster for fully independent per-group clones, parallel fitting via n_jobs, and selective group operations.
-
How to Run Panel Cross-Validation
Panel-Data
Time series cross-validation on panel data with GridSearchCV, selective group observation, rewind operations, and groupwise performance comparison.
-
How to Forecast Panel Prediction Intervals
Panel-Data
Combine conformal and quantile regression intervals on panel data with per-group coverage analysis, calibration plots, and groupwise interval scoring.
-
How to Visualize Forecasts
Visualization
Plot point forecasts, compare multiple models, render prediction interval bands, inspect residual diagnostics, and check interval calibration.