Learn R Programming

modeltime (version 0.4.0)

exp_smoothing_params: Tuning Parameters for Exponential Smoothing Models

Description

Tuning Parameters for Exponential Smoothing Models

Usage

error(values = c("additive", "multiplicative"))

trend(values = c("additive", "multiplicative", "none"))

season(values = c("additive", "multiplicative", "none"))

damping(values = c("damped", "none"))

Arguments

values

A character string of possible values.

Details

The main parameters for Exponential Smoothing models are:

  • error: The form of the error term: additive", or "multiplicative". If the error is multiplicative, the data must be non-negative.

  • trend: The form of the trend term: "additive", "multiplicative" or "none".

  • season: The form of the seasonal term: "additive", "multiplicative" or "none"..

  • damping: Apply damping to a trend: "damped", or "none".

Examples

Run this code
# NOT RUN {
error()

trend()

season()

# }

Run the code above in your browser using DataLab