-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
30 changed files
with
2,083 additions
and
525 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,2 @@ | ||
^data-raw$ | ||
^\.github$ |
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,36 +1,48 @@ | ||
Package: dsem | ||
Type: Package | ||
Title: Fit Dynamic Structural Equation Models | ||
Version: 1.0 | ||
Date: 2023-06-21 | ||
Version: 1.0.0 | ||
Date: 2023-12-04 | ||
Authors@R: | ||
c(person(given = "Anon", | ||
family = "Ymous", | ||
c(person(given = "James", | ||
family = "Thorson", | ||
role = c("aut", "cre"), | ||
email = "[email protected]") | ||
) | ||
Imports: | ||
TMB, | ||
TMB (>= 1.9.7), | ||
Matrix (>= 1.6.3), | ||
sem, | ||
igraph, | ||
methods | ||
Depends: | ||
R (>= 4.0.0), | ||
Suggests: | ||
knitr, | ||
AER, | ||
phylopath, | ||
rmarkdown, | ||
reshape, | ||
gridExtra, | ||
dynlm, | ||
MARSS, | ||
ggplot2, | ||
ggpubr, | ||
ggraph, | ||
grid, | ||
vars, | ||
testthat | ||
Enhances: | ||
rstan, | ||
tmbstan | ||
LinkingTo: | ||
TMB, | ||
RcppEigen | ||
Description: Applies dynamic structural equation models to time-series data | ||
with generic and simplified specification for simultaneous and lagged | ||
effects. | ||
effects. Methods are described in Thorson et al. (In revision) | ||
"Dynamic structural equation models synthesize ecosystem dynamics | ||
constrained by ecological mechanisms." | ||
License: GPL-3 | ||
Encoding: UTF-8 | ||
RoxygenNote: 7.2.3 | ||
|
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,29 +1,43 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
S3method(logLik,dsem) | ||
S3method(plot,dsem) | ||
S3method(predict,dsem) | ||
S3method(print,dsem) | ||
S3method(residuals,dsem) | ||
S3method(simulate,dsem) | ||
S3method(summary,dsem) | ||
S3method(vcov,dsem) | ||
export(TMBAIC) | ||
export(as_fitted_DAG) | ||
export(as_sem) | ||
export(classify_variables) | ||
export(dsem) | ||
export(dsem_control) | ||
export(fit_tmb) | ||
export(list_parameters) | ||
export(make_ram) | ||
export(make_dsem_ram) | ||
export(parse_path) | ||
importFrom(Matrix,Cholesky) | ||
importFrom(Matrix,solve) | ||
importFrom(TMB,MakeADFun) | ||
importFrom(TMB,compile) | ||
importFrom(TMB,dynlib) | ||
importFrom(TMB,sdreport) | ||
importFrom(TMB,summary.sdreport) | ||
importFrom(igraph,graph_from_data_frame) | ||
importFrom(igraph,plot.igraph) | ||
importFrom(methods,is) | ||
importFrom(sem,sem) | ||
importFrom(stats,"tsp<-") | ||
importFrom(stats,.preformat.ts) | ||
importFrom(stats,logLik) | ||
importFrom(stats,na.omit) | ||
importFrom(stats,nlminb) | ||
importFrom(stats,optimHess) | ||
importFrom(stats,pnorm) | ||
importFrom(stats,rnorm) | ||
importFrom(stats,simulate) | ||
importFrom(stats,time) | ||
importFrom(stats,vcov) | ||
useDynLib(dsem, .registration = TRUE) |
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 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
Oops, something went wrong.