Do you need to make the data stationary for deep ar?

0

What preprocessing steps are needed for time series forecast? standardization, making it stationary or what? Thank you in advance

patty
已提問 3 個月前檢視次數 251 次
1 個回答
0

To prepare time series data for forecasting, some common preprocessing steps include:

  • Checking for and handling missing data. This could involve imputing missing values.
  • Making the time series stationary. Many forecasting models assume the time series is stationary. This means the statistical properties like mean and variance do not change over time. Differencing or detrending can help make the series sttionary.
  • Feature engineering. Deriving additional features from the raw time series can help improve forecast accuracy. These features could include things like seasonality patterns, price effects, promotional periods etc.
  • Data transformation and scaling. Since different algorithms work best with data scaled in a particular range, it's often necessary to transform and scale variables. For example, standardizing data to have mean of 0 and standard deviation of 1.
  • Train-test split. The data should be divided into training and test sets to develop and evaluate the model performance. A common split is 70% for training and 30% for testing.
profile picture
專家
已回答 2 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南