-
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.
Features: simulate autocorrelated environment with trait and population dynamics. Also ceiling density regulation. Expand README and add LICENSE (MIT) Add Luis as package author Add testing: - unit testing at highest (ts simulation) level - env sim - stub for tests - a regression test Ignore build and autosave files - Add rds files to ignore
- Loading branch information
Showing
33 changed files
with
511 additions
and
927 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 +1,7 @@ | ||
.Rhistory | ||
*.rds | ||
..Rcheck | ||
*.o | ||
*.so | ||
.\#* | ||
\#*\# |
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 |
---|---|---|
|
@@ -4,15 +4,16 @@ Description: A set of codes to simulate evolutionary, plastic and ecological | |
constantly moving optima | ||
Title: Simulations of eco-evo trait and demographic dynamics under changing | ||
environments | ||
Version: 0.0-1 | ||
Date: 2013-10-31 | ||
Version: 0.1.0 | ||
Date: 2015-11-17 | ||
Authors@R: c(person("Jaime", "Ashander", role = c("aut", "cre"), email= | ||
'[email protected]')) | ||
"[email protected]"), person("Luis-Miguel", "Chevin", role=c("aut"), | ||
email="[email protected]")) | ||
Depends: | ||
RcppArmadillo (>= 0.4.3) | ||
Imports: | ||
Rcpp, | ||
deSolve, | ||
MASS | ||
Rcpp | ||
LinkingTo: Rcpp, RcppArmadillo | ||
License: BSD | ||
License: MIT | ||
Suggests: | ||
testthat |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2015 Jaime Ashander and Luis-Miguel Chevin | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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,23 +1,11 @@ | ||
# Generated by roxygen2 (4.0.2): do not edit by hand | ||
|
||
export(Beta) | ||
export(Env_shift) | ||
export(Env_shift_cpp) | ||
export(Env_smooth) | ||
export(G) | ||
export(Log_R_bar) | ||
export(Log_W_bar) | ||
export(Log_W_bar_lethal) | ||
export(Pheno_demo) | ||
export(Pheno_demo_econ) | ||
export(Pheno_demo_lande) | ||
export(Pheno_lande) | ||
export(R_bar) | ||
export(R_bar_dd) | ||
export(R_bar_ceiling) | ||
export(R_bar_thetalog) | ||
export(Va) | ||
export(W_bar) | ||
export(pdTS) | ||
export(stab_curve) | ||
import(MASS) | ||
import(deSolve) | ||
export(make_env) | ||
export(simulate_pheno_ts) | ||
useDynLib(phenoecosim) |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.