naive.SNaiveParams

Parameters for the SNaive model.

Usage

Source

naive.SNaiveParams(
    *,
    period=7,
    interval_width=0.95,
)

Parameters

period: float = 7

Seasonal period of the data. For example, day of week = 7, monthly = 12, and quarterly = 4.

interval_width: float = 0.95
Width of the prediction intervals - for example, 0.95 will produce 95% prediction intervals.