Science Score: 26.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
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (16.5%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
Repository
Bridging Time Series Frequencies for Nowcasting
Basic Info
- Host: GitHub
- Owner: marcburri
- License: other
- Language: R
- Default Branch: main
- Homepage: https://marcburri.github.io/bridgr/
- Size: 2.45 MB
Statistics
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
- Releases: 1
Created over 1 year ago
· Last pushed about 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%"
)
```
# bridgr
[](https://lifecycle.r-lib.org/articles/stages.html#stable)
[](https://github.com/marcburri/bridgr/actions/workflows/R-CMD-check.yaml)
[](https://marcburri.r-universe.dev/bridgr)
[](https://CRAN.R-project.org/package=bridgr)
[](https://cran.rstudio.com/web/packages/bridgr/index.html)
[](https://app.codecov.io/gh/marcburri/bridgr)
`bridgr` is designed to simplify the implementation and evaluation of bridge models, which are useful for nowcasting (predicting the present or near-term) and forecasting macroeconomic variables like GDP.
Bridge models are statistical tools that link high-frequency indicators (e.g., monthly industrial production) to low-frequency target variables (e.g., quarterly GDP) by forecasting and aggregating the indicators to match the target's frequency. They enable timely predictions before the official release of low-frequency data, making them essential for policymakers who need early insights for decision-making.
## Installation
From CRAN:
``` r
install.packages("bridgr")
```
You can install the development version of `bridgr` like so:
``` r
# install.packages("devtools")
devtools::install_github("marcburri/bridgr")
```
## Example
This is a basic example:
```{r example}
library(bridgr)
gdp <- suppressMessages(tsbox::ts_pc(bridgr::gdp))
bridge_model <- bridge(
target = gdp,
indic = baro,
indic_predict = "auto.arima",
indic_lags = 2,
target_lags=1,
h=2
)
forecast(bridge_model)
summary(bridge_model)
```
Owner
- Name: Marc Burri
- Login: marcburri
- Kind: user
- Company: University of Neuchâtel
- Website: marcburri.github.io
- Repositories: 2
- Profile: https://github.com/marcburri
Economics PhD
GitHub Events
Total
- Create event: 6
- Release event: 1
- Issues event: 2
- Watch event: 7
- Issue comment event: 1
- Push event: 51
- Fork event: 1
Last Year
- Create event: 6
- Release event: 1
- Issues event: 2
- Watch event: 7
- Issue comment event: 1
- Push event: 51
- Fork event: 1
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 1
- Total pull requests: 0
- Average time to close issues: 4 days
- Average time to close pull requests: N/A
- Total issue authors: 1
- Total pull request authors: 0
- Average comments per issue: 1.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 1
- Pull requests: 0
- Average time to close issues: 4 days
- Average time to close pull requests: N/A
- Issue authors: 1
- Pull request authors: 0
- Average comments per issue: 1.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- marcburri (1)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- cran 139 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 1
- Total maintainers: 1
cran.r-project.org: bridgr
Bridging Data Frequencies for Timely Economic Forecasts
- Homepage: https://github.com/marcburri/bridgr
- Documentation: http://cran.r-project.org/web/packages/bridgr/bridgr.pdf
- License: MIT + file LICENSE
-
Latest release: 0.1.1
published over 1 year ago
Rankings
Dependent packages count: 27.6%
Dependent repos count: 34.0%
Average: 49.5%
Downloads: 86.9%
Maintainers (1)
Last synced:
10 months ago