Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Autoregression | Stationary Models
Time Series Analysis
セクション 4.  3
single

single

bookAutoregression

メニューを表示するにはスワイプしてください

Let's move on to the review of the autoregressive model:

The formula is similar to the linear regression formula, which is where the name comes from. Instead of the coefficient - the past value of x is used.

With statsmodels we can run an autoregressive model AutoReg():

from statsmodels.tsa.ar_model import AutoReg


# Train autoregression model
model = AutoReg(df["value"], lags=3)
model_fit = model.fit()


# Make predictions
predictions = model_fit.predict(start=0, end=len(X)-1, dynamic=False)


# Plot results
plt.plot(df["value"][:50])
plt.plot(predictions[:50], color='red')
plt.show()

If you notice, the predictions made by the autoregressive model are more accurate than those of the simple moving average.

Let's learn how to evaluate the received results of the trained models. The error is calculated using the mean-squared error. This is done simply with the help of functions sqrt() and mean_squared_error():

from sklearn.metrics import mean_squared_error
from math import sqrt

test_score = sqrt(mean_squared_error(df["value"][3:], predictions
[3:]))
print("Test MSE: %.3f" % test_score)

In the same way, we calculate the error value for the previous model:

The smaller the MSE value, the correspondingly smaller the error.

タスク

スワイプしてコーディングを開始

Create an autoregressive model and train it on the dataset shampoo.csv.

  1. Create an autoregression model (Autoreg) with 6 lags for the "Sales" column of the df DataFrame.
  2. Fit the model to data.
  3. Make predictions using the model. Start forecasting at the first row (the start parameter), and set the dynamic parameter to False.
  4. Visualize the results: show the first 150 observations of the "Sales" column of the df DataFrame within the first call of the .plot() function and the first 150 predicted values within the second call.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 4.  3
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt