This line means that Jupyter is told to import the pandas library and assigns it a short name, pd
, for ease of reference. 📚
One of the first steps of every statistical analysis is importing the dataset to be analyzed into the software.
This study conducts a comprehensive analysis of monthly USD/TRY and EUR/TRY exchange rates from Q1 2012 to October 2024.
Data, acquired from the Turkish Central Bank’s EVDS database, consists of separate buying and selling rates,
Once stationarity is confirmed, Model Selection and Forecasting proceeds using both additive and multiplicative
Further, advanced forecasting models, including Holt's linear (two-parameter) and seasonal (three-parameter) adjustments,
For series with substantial trend and seasonal components, Box-Jenkins ARMA modeling will enhance forecast precision.
Autocorrelation Analysis through autocorrelation and partial autocorrelation functions (normalized via Bartlett’s correction)
The theoretical basis for these methods rests on stochastic process principles, where a real-valued time series in probability space
Trend Component Analysis distinguishes between linear and nonlinear growth or decline over the long term,
as expressed by the trend function. Seasonal Components are addressed by observing recurring patterns in monthly exchange rates.
Additionally, Cyclical Components, characterized by longer-term fluctuations influenced by economic policies, are examined.
import pandas as pd import numpy as np import statsmodels.api as sm