Python 時系列分析 1,000本ノック
– ノック41: 時系列データの検定 –

Python 時系列分析 1,000本ノック– ノック41: 時系列データの検定 –
次の Python コードの出力はどれでしょうか?

Python コード:

from statsmodels.stats.diagnostic import acorr_ljungbox
import numpy as np

np.random.seed(23)
data = np.random.randn(100)
result = acorr_ljungbox(
    data, 
    lags=[10], 
    return_df=True)

print(result)

 

回答の選択肢:

(A) 自己相関の検定結果
(B) 単位根の検定結果
(C) ホワイトノイズの検定結果
(D) グレンジャー因果の検定結果

Python 時系列分析 1,000本ノック– ノック42: 時系列データのグレンジャー因果検定 –