An open API service indexing awesome lists of open source software.

https://github.com/stscl/spedm

Spatial Empirical Dynamic Modeling
https://github.com/stscl/spedm

Last synced: 4 months ago
JSON representation

Spatial Empirical Dynamic Modeling

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "##",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# spEDM https://stscl.github.io/spEDM/

[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-stable-20b2aa.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![CRAN](https://www.r-pkg.org/badges/version/spEDM)](https://CRAN.R-project.org/package=spEDM)
[![R-universe](https://stscl.r-universe.dev/badges/spEDM?color=cyan)](https://stscl.r-universe.dev/spEDM)

_**Sp**atial **E**mpirical **D**ynamic **M**odeling_

## Installation

- Install from [CRAN](https://CRAN.R-project.org/package=spEDM) with:

``` r
install.packages("spEDM", dep = TRUE)
```

- Install binary version from [R-universe](https://stscl.r-universe.dev/spEDM) with:

``` r
install.packages("spEDM",
repos = c("https://stscl.r-universe.dev",
"https://cloud.r-project.org"),
dep = TRUE)
```

- Install from source code on [GitHub](https://github.com/stscl/spEDM) with:

```r
if (!requireNamespace("devtools")) {
install.packages("devtools")
}
devtools::install_github("stscl/spEDM",
build_vignettes = TRUE,
dep = TRUE)
```