Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (13.7%) to scientific vocabulary
Last synced: 9 months ago
·
JSON representation
Repository
Autocorrelation analysis of time series
Basic Info
- Host: GitHub
- Owner: SergioFinances
- License: other
- Language: R
- Default Branch: master
- Homepage: https://sergiofinances.github.io/actfts/
- Size: 3.86 MB
Statistics
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
- Releases: 0
Created almost 2 years ago
· Last pushed over 1 year ago
Metadata Files
Readme
Changelog
License
README.Rmd
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# actfts: Autocorrelation Tools Featured for Time Series
[](https://lifecycle.r-lib.org/articles/stages.html#experimental)
The actfts package offers a flexible approach to time series analysis by focusing on Autocorrelation (ACF), Partial Autocorrelation (PACF), and stationarity tests, generating interactive plots for dynamic data visualization. It processes input data by validating and transforming it according to specified differences. It calculates ACF and PACF up to several lags and performs Box-Pierce, Ljung-Box, ADF, KPSS, and PP tests. The function organizes results into tables, with options to save them as TIFF files or Excel spreadsheets, and interactive mode provides on-screen visualization of the ACF-PACF and stationarity test outcomes.
## Installation
You can install the development version of actfts from:
``` r
install.packages("actfts")
devtools::install_github("SergioFinances/actfts")
```
## Example
This is a basic example which shows you how to use actfts packcage:
```{r message=FALSE, warning=FALSE}
library(actfts)
data <- actfts::GDPEEUU
result <- actfts::acfinter(data, lag = 10)
print(result)
```
## References
* 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.
* 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.
* 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.
Owner
- Login: SergioFinances
- Kind: user
- Repositories: 1
- Profile: https://github.com/SergioFinances
GitHub Events
Total
- Watch event: 1
- Push event: 33
- Create event: 1
Last Year
- Watch event: 1
- Push event: 33
- Create event: 1
Packages
- Total packages: 1
-
Total downloads:
- cran 198 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 1
- Total maintainers: 1
cran.r-project.org: actfts
Autocorrelation Tools Featured for Time Series
- Homepage: https://github.com/SergioFinances/actfts
- Documentation: http://cran.r-project.org/web/packages/actfts/actfts.pdf
- License: MIT + file LICENSE
-
Latest release: 0.3.0
published over 1 year ago
Rankings
Dependent packages count: 27.1%
Dependent repos count: 33.3%
Average: 49.1%
Downloads: 87.0%
Maintainers (1)
Last synced:
10 months ago
Dependencies
DESCRIPTION
cran
- R >= 2.10 depends
- openxlsx * imports
- plotly * imports
- reactable * imports
- stats * imports
- tseries * imports
- xts * imports
- testthat >= 3.0.0 suggests