Introduction to Time Series

Time series constitute a prevalent data type in several disciplines, notably macroeconomics and finance. The modeling of time series is crucial for many purposes, including forecasting, understanding macroeconomic mechanisms, and risk assessment. This course proposes an introduction to time series analysis. It has been developed by Jean-Paul Renne and Alain Monfort.

Codes associated with this course are part of the TSModels package, which is available on GitHub. To load a package from GitHub, you need to use function install_github from the devtools package:

install.packages("devtools") # in case you do not have that one.
library(devtools)
install_github("jrenne/TSModels")
library(TSModels)

Useful (R) links: