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

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

Python コード:

import pandas as pd

date = pd.Timestamp('2023-08-15')
print(date.to_period('Q').asfreq('Q-DEC'))

 

回答の選択肢:

(A) 2023Q3
(B) 2023Q4
(C) 2024Q1
(D) 2024Q2

Python 時系列分析 1,000本ノック– ノック37: ARモデルの適用 –