Title: | Autocorrelation Tools Featured for Time Series |
---|---|
Description: | The 'actfts' package provides tools for performing autocorrelation analysis of time series data. It includes functions to compute and visualize the autocorrelation function (ACF) and the partial autocorrelation function (PACF). Additionally, it performs the Dickey-Fuller, KPSS, and Phillips-Perron unit root tests to assess the stationarity of time series. Theoretical foundations are based on Box and Cox (1964) <doi:10.1111/j.2517-6161.1964.tb00553.x>, Box and Jenkins (1976) <isbn:978-0-8162-1234-2>, and Box and Pierce (1970) <doi:10.1080/01621459.1970.10481180>. Statistical methods are also drawn from Kolmogorov (1933) <doi:10.1007/BF00993594>, Kwiatkowski et al. (1992) <doi:10.1016/0304-4076(92)90104-Y>, and Ljung and Box (1978) <doi:10.1093/biomet/65.2.297>. The package integrates functions from 'forecast' (Hyndman & Khandakar, 2008) <https://CRAN.R-project.org/package=forecast>, 'tseries' (Trapletti & Hornik, 2020) <https://CRAN.R-project.org/package=tseries>, 'xts' (Ryan & Ulrich, 2020) <https://CRAN.R-project.org/package=xts>, and 'stats' (R Core Team, 2023) <https://stat.ethz.ch/R-manual/R-devel/library/stats/html/00Index.html>. Additionally, it provides visualization tools via 'plotly' (Sievert, 2020) <https://CRAN.R-project.org/package=plotly> and 'reactable' (Glaz, 2023) <https://CRAN.R-project.org/package=reactable>. The package also incorporates macroeconomic datasets from the U.S. Bureau of Economic Analysis: Disposable Personal Income (DPI) <https://fred.stlouisfed.org/series/DPI>, Gross Domestic Product (GDP) <https://fred.stlouisfed.org/series/GDP>, and Personal Consumption Expenditures (PCEC) <https://fred.stlouisfed.org/series/PCEC>. |
Authors: | David RodrÃguez [aut, cph] |
Maintainer: | Sergio Sierra <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.3.0 |
Built: | 2025-03-07 08:23:09 UTC |
Source: | https://github.com/sergiofinances/actfts |
acfinter computes and visualizes the ACF and PACF of a given time series, performs stationarity tests, and optionally generates interactive tables and plots.
acfinter( datag, lag = 72, ci.method = "white", ci = 0.95, interactive = NULL, delta = "levels", download = FALSE )
acfinter( datag, lag = 72, ci.method = "white", ci = 0.95, interactive = NULL, delta = "levels", download = FALSE )
datag |
A numeric vector or a time series object. |
lag |
Maximum number of lags for the ACF and PACF. Default is 72. |
ci.method |
Method for confidence intervals: "white" (default) or "ma". |
ci |
Confidence level for confidence intervals. Default is 0.95. |
interactive |
Character string specifying whether to create an interactive table: "acftable" for the ACF-PACF table, "stattable" for the stationarity tests table. Default is NULL. |
delta |
Transformation of the data: "levels" (default), "diff1", "diff2", or "diff3". |
download |
Logical indicating whether to save the results as files. Default is FALSE. |
A list with two elements: "ACF-PACF Test" and "Stationary Test". The function also creates interactive plots and tables if specified.
data <- actfts::GDPEEUU result <- actfts::acfinter(data, lag = 20, ci.method = "white", interactive = "acftable") print(result)
data <- actfts::GDPEEUU result <- actfts::acfinter(data, lag = 20, ci.method = "white", interactive = "acftable") print(result)
This dataset contains the disposable personal income of the United States from 01/01/1947 to the present with quartely frequency.
DPIEEUU
DPIEEUU
A dataset in xts format with one variable and several files that are automatically updated depending on the update of the data's FRED:
Disposable Personal Income in billions of dollars
https://fred.stlouisfed.org/series/DPI
U.S. Bureau of Economic Analysis, Disposable Personal Income (DPI), retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/DPI
This dataset contains the gross domestic product of the United States from 01/01/1947 to the present with quartely frequency.
GDPEEUU
GDPEEUU
A dataset in xts format with one variable and several files that are automatically updated depending on the update of the data's FRED:
Gross Domestic product in billions of dollars
https://fred.stlouisfed.org/series/GDP
U.S. Bureau of Economic Analysis, Gross Domestic Product (GDP), retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/GDP
This dataset contains the personal consumption expenditures of the United States from 01/01/1947 to the present with quartely frequency.
PCECEEUU
PCECEEUU
A dataset in xts format with one variable and several files that are automatically updated depending on the update of the data's FRED:
Personal Consumption Expenditures in billions of dollars
https://fred.stlouisfed.org/series/PCEC
U.S. Bureau of Economic Analysis, Personal Consumption Expenditures (PCEC), retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/PCEC