Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mpiktas/midasr
R package for mixed frequency time series data analysis.
https://github.com/mpiktas/midasr
Last synced: 9 days ago
JSON representation
R package for mixed frequency time series data analysis.
- Host: GitHub
- URL: https://github.com/mpiktas/midasr
- Owner: mpiktas
- License: other
- Created: 2012-03-14T13:24:01.000Z (almost 13 years ago)
- Default Branch: main
- Last Pushed: 2022-08-21T15:31:23.000Z (over 2 years ago)
- Last Synced: 2024-08-13T07:11:39.043Z (4 months ago)
- Language: R
- Homepage: http://mpiktas.github.io/midasr/
- Size: 1.13 MB
- Stars: 73
- Watchers: 15
- Forks: 34
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - mpiktas/midasr - R package for mixed frequency time series data analysis. (R)
README
[![Travis-CI Build Status](https://travis-ci.org/mpiktas/midasr.svg?branch=master)](https://travis-ci.org/mpiktas/midasr)
[![codecov.io](https://codecov.io/github/mpiktas/midasr/coverage.svg?branch=master)](https://codecov.io/github/mpiktas/midasr?branch=master)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/midasr)](https://cran.r-project.org/package=midasr
)
[![Downloads](https://cranlogs.r-pkg.org/badges/midasr)](https://www.r-pkg.org/pkg/midasr)The **midasr** R package provides econometric methods for working with mixed frequency data. The package provides tools for estimating time series MIDAS regression, where response and explanatory variables are of different frequency, e.g. quarterly vs monthly. The fitted regression model can be tested for adequacy and then used for forecasting. More specifically, the following main functions are available:
- ```midas_r``` -- MIDAS regression estimation using NLS.
- ```midas_nlpr``` -- Non-linear parametric MIDAS regression estimation.
- ```midas_sp``` -- Semi-parametric and partialy linear MIDAS regression.
- ```midas_qr``` -- Quantile MIDAS regression.
- ```mls``` -- time series embedding to lower frequency, flexible function for specifying MIDAS models.
- ```mlsd``` -- time series embedding to lower frequency using available date information.
- ```hAh.test``` and ```hAhr.test``` -- adequacy testing of MIDAS regression.
- ```forecast``` -- forecasting MIDAS regression.
- ```midasr_ic_table``` -- lag selection using information criteria.
- ```average_forecast``` -- calculate weighted forecast combination.
- ```select_and_forecast``` -- perform model selection and then use the selected model for forecasting.The package provides the usual methods for generic functions which can be used on fitted MIDAS regression object: ```summary```, ```coef```, ```residuals```, ```deviance```, ```fitted```, ```predict```, ```logLik```. It also
has additional methods for estimating robust standard errors: ```estfun``` and ```bread```.The package also provides all the popular MIDAS regression restrictions such as normalized Almon exponential, normalized beta and etc.
The package development was influenced by features of the [MIDAS Matlab toolbox][3] created by Eric Ghysels.
The package has the project [webpage][1] and you can follow its development on [github][2].
The detailed description of the package features can be found in the [JSS article][4].
# Development
The stable versions of the package have version numbers x.y. All the stable versions are submitted to [CRAN][5]. The development versions have version numbers x.y.z.
To install the development version of midasr, it's easiest to use the `devtools` package:
# install.packages("devtools")
library(devtools)
install_github("midasr","mpiktas")
[1]: https://mpiktas.github.io/midasr/
[2]: https://github.com/mpiktas/midasr
[3]: https://eghysels.web.unc.edu
[4]: https://www.jstatsoft.org/article/view/v072i04
[5]: https://cran.r-project.org/package=midasr