-
Notifications
You must be signed in to change notification settings - Fork 9
/
README.Rmd
68 lines (47 loc) · 2.4 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%",
message = F,
warning = F,
dpi = 200
)
```
# garchmodels
<img src="vignettes/logo-garchmodels.png" width="147" height="170" align="right" />
<!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/garchmodels)](https://CRAN.R-project.org/package=garchmodels)
[![Total Downloads](http://cranlogs.r-pkg.org/badges/grand-total/garchmodels?color=brightgreen)](https://cran.r-project.org/package=garchmodels)
![](http://cranlogs.r-pkg.org/badges/garchmodels?color=brightgreen)
[![Codecov test coverage](https://codecov.io/gh/AlbertoAlmuinha/garchmodels/branch/master/graph/badge.svg)](https://codecov.io/gh/AlbertoAlmuinha/garchmodels?branch=master)
[![Lifecycle:maturing](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://lifecycle.r-lib.org/articles/stages.html#maturing)
[![R-CMD-check](https://github.com/AlbertoAlmuinha/garchmodels/workflows/R-CMD-check/badge.svg)](https://github.com/AlbertoAlmuinha/garchmodels/actions)
<!-- badges: end -->
> A parsnip backend for `GARCH` models in the `tidymodels` framework.
## Tutorials
- [__Getting Started with Garchmodels__](https://albertoalmuinha.github.io/garchmodels/articles/getting-started.html): A walkthrough of the tidy modeling approach with the package.
- [__Tuning Univariate Garch Models__](https://albertoalmuinha.github.io/garchmodels/articles/tuning_univariate_algorithms.html): Learn how to tune parameters of univariate garch models.
## Installation
CRAN version:
``` r
install.packages("garchmodels")
```
Development version:
``` r
# install.packages("devtools")
devtools::install_github("AlbertoAlmuinha/garchmodels")
```
## Why Garchmodels?
> Garchmodels unlocks univariate and multivariate GARCH models in one framework.
```{r, echo=F, out.width='100%', fig.align='center'}
knitr::include_graphics("vignettes/univariate_multivariate.png")
```
In a single framework you will be able to find what you need:
- __Univariate Methods__: `garchmodels` connects to the `rugarch` package.
- __Multivariate Methods__: `garchmodels` connects to the `rugarch` and `rmgarch` packages. Available methods include DCC-Garch (Dynamic Conditional Correlation Garch), Copula Garch and GO-Garch models.