-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ec5b37
commit 1e982bd
Showing
1 changed file
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
# EcoState | ||
State-space extension of EcoPath-with-EcoSim | ||
|
||
[![Documentation](https://img.shields.io/badge/documentation-EcoState-orange.svg?colorB=E91E63)](https://james-thorson-noaa.github.io/EcoState/) | ||
|
||
Package _EcoState_ fits a state-space mass-balance model intended for aquatic ecosystems, using mass-balance equations from matching and dynamical equations matching Ecosim. Unlike Ecopath with Ecosim (EwE), it fits both biological parameters (e.g., equilibrium biomass and predator-prey vulnerability) and measurement parameters (e.g., catchability coefficients) via fit to time-series data. It also estimates additional process errors representing nonstationarity in growth efficiency, ecotrophic efficient, migration, or other unmodeled processes. | ||
|
||
## Installation | ||
|
||
EcoState can be installed as a private repo. First click Code -> Download ZIP and save it locally. Then install it from that local copy: | ||
EcoState can be installed from GitHub using: | ||
|
||
``` r | ||
library(devtools) | ||
install_local([LOCAL PATH], dependencies = TRUE) | ||
library(remotes) | ||
install_github( "James-Thorson-NOAA/EcoState" ) | ||
``` |