Python : auto_arima로 시계열 분석하기


Python : auto_arima로 시계열 분석하기

import pandas as pd import numpy as np from pmdarima.arima import auto_arima df = pd.read_csv(r'경로/파일.csv', parse_dates=['시간 열'], index_col='시간 열') df_yearly = df.resample('A').mean() # Find the best ARIMA model for the '남부' column model = auto_arima(df_yearly['대상 열'], seasonal=False, suppress_warnings=True) print(model.summary())...

Python : auto_arima로 시계열 분석하기에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.



원문링크 : Python : auto_arima로 시계열 분석하기