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
- Host: GitHub
- URL: https://github.com/stscl/spedm
- Owner: stscl
- Created: 2024-10-05T14:08:37.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-12-12T05:30:43.000Z (5 months ago)
- Last Synced: 2024-12-12T06:22:28.076Z (5 months ago)
- Language: C++
- Homepage: https://stscl.github.io/spEDM/
- Size: 2.3 MB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
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://lifecycle.r-lib.org/articles/stages.html#stable)
[](https://CRAN.R-project.org/package=spEDM)
[](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)
```