forked from antoniofabio/tsDyn
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathREADME.Rmd
41 lines (27 loc) · 941 Bytes
/
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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# tsDyn
Package tsDyn implements a variety of non-linear time series models. To read more about it, look at:
* the [wiki](https://github.com/MatthieuStigler/tsDyn/wiki)
* the [FAQ](https://github.com/MatthieuStigler/tsDyn/wiki/FAQ)
## Installation
You can install the released version of tsDyn from [CRAN](https://CRAN.R-project.org) with:
``` {r, eval=FALSE}
install.packages("tsDyn")
```
## Development version
Most of the development is hosted under the branch called [Dev94](https://github.com/MatthieuStigler/tsDyn/tree/Dev94). To install that version, use:
```{r, eval=FALSE}
library(remotes)
remotes::install_github("MatthieuStigler/tsDyn/tsDyn", ref = "dev")
```