Python 時系列分析 1,000本ノック
– ノック35: 時系列データの週次計算 –

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

Python コード:

import pandas as pd

dates = pd.date_range(
    start='2023-01-01', 
    periods=4, 
    freq='W')
    
data = [100, 110, 90, 120]
df = pd.DataFrame(
    data, 
    index=dates, 
    columns=['A'])

print(df.pct_change())

 

回答の選択肢:

(A) 各週の値の割合
(B) 各週の変化率
(C) 各週の値の累積和
(D) 各週の差分

Python 時系列分析 1,000本ノック– ノック36: 時系列データの四半期 –