-
Notifications
You must be signed in to change notification settings - Fork 27
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
78 changed files
with
79 additions
and
165 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,7 +1,7 @@ | ||
Package: pomp2 | ||
Type: Package | ||
Title: Statistical Inference for Partially Observed Markov Processes | ||
Version: 2.0.6.2 | ||
Version: 2.0.7.1 | ||
Date: 2018-12-13 | ||
Authors@R: c(person(given=c("Aaron","A."),family="King", | ||
role=c("aut","cre"),email="[email protected]"), | ||
|
@@ -22,8 +22,8 @@ Authors@R: c(person(given=c("Aaron","A."),family="King", | |
URL: https://kingaa.github.io/pomp/ | ||
Description: Tools for data analysis with partially observed Markov process (POMP) models (also known as stochastic dynamical systems, hidden Markov models, and nonlinear, non-Gaussian, state-space models). The package provides facilities for implementing POMP models, simulating them, and fitting them to time series data by a variety of frequentist and Bayesian methods. It is also a versatile platform for implementation of inference methods for general POMP models. | ||
Depends: R(>= 3.5.0), methods | ||
Imports: stats, graphics, digest, mvtnorm, deSolve, coda, reshape2 | ||
Suggests: magrittr, plyr, ggplot2, knitr, tidyr, dplyr, subplex | ||
Imports: stats, graphics, digest, mvtnorm, deSolve, coda, reshape2, magrittr | ||
Suggests: plyr, ggplot2, knitr, tidyr, dplyr, subplex | ||
SystemRequirements: For Windows users, Rtools (see https://cran.r-project.org/bin/windows/Rtools/). | ||
License: GPL-3 | ||
LazyData: true | ||
|
@@ -106,6 +106,7 @@ Collate: | |
'ou2.R' | ||
'parmat.R' | ||
'parus.R' | ||
'pipe.R' | ||
'pred_mean.R' | ||
'pred_var.R' | ||
'show.R' | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
##' @importFrom magrittr %>% | ||
##' @docType import | ||
##' @export | ||
magrittr::`%>%` |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
png(filename="abc-%02d.png",res=100) | ||
|
||
library(pomp2) | ||
library(magrittr) | ||
|
||
ou2() -> ou2 | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
options(digits=3) | ||
|
||
library(pomp2) | ||
library(magrittr) | ||
library(dplyr) | ||
library(tidyr) | ||
library(ggplot2) | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
options(digits=3) | ||
|
||
library(pomp2) | ||
library(magrittr) | ||
|
||
try(pomp2:::concat()) | ||
try(pomp2:::concat("a","b")) | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
options(digits=3) | ||
|
||
library(pomp2) | ||
library(magrittr) | ||
library(tidyr) | ||
library(dplyr) | ||
|
||
|
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
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.