You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: R/mif2.R
+1-2
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,6 @@
6
6
##' This extra variability effectively smooths the likelihood surface and combats particle depletion by introducing diversity into particle population.
7
7
##' As the iterations progress, the magnitude of the perturbations is diminished according to a user-specified cooling schedule.
8
8
##' The algorithm is presented and justified in Ionides et al. (2015).
##' The basic structure and its rationale are described in the \emph{Journal of Statistical Software} paper, an updated version of which is to be found on the \href{https://kingaa.github.io/pomp/}{package website}.
22
22
##'
@@ -118,12 +118,11 @@
118
118
##' @param accumvars optional character vector;
119
119
##' contains the names of accumulator variables.
120
120
##' See \link{accumvars} for a definition and discussion of accumulator variables.
121
-
##' @param ... additional arguments supply new or modify existing model characteristics or components.
122
-
##' See \code{\link{pomp}} for a full list of recognized arguments.
123
-
##'
124
-
##' When named arguments not recognized by \code{\link{pomp}} are provided, these are made available to all basic components via the so-called \dfn{userdata} facility.
121
+
##' @param userdata optional list; the elements of this list will be available to basic model components.
125
122
##' This allows the user to pass information to the basic components outside of the usual routes of covariates (\code{covar}) and model parameters (\code{params}).
126
123
##' See \link[=userdata]{userdata} for information on how to use this facility.
124
+
##' @param ... additional arguments will be added to the \code{userdata} list, with a warning.
125
+
##' In a future release, this warning will become an error.
127
126
##' @param verbose logical; if \code{TRUE}, diagnostic messages will be printed to the console.
128
127
##' @return
129
128
##' The \code{pomp} constructor function returns an object, call it \code{P}, of class \sQuote{pomp}.
Copy file name to clipboardexpand all lines: R/probe.R
+2-8
Original file line number
Diff line number
Diff line change
@@ -23,26 +23,20 @@
23
23
##' @concept synthetic likelihood
24
24
##' @family elementary algorithms
25
25
##' @family summary statistic-based methods
26
-
##'
27
26
##' @inheritSection pomp Note for Windows users
28
-
##'
29
27
##' @include pomp_class.R pomp_fun.R pomp.R
30
28
##' @importFrom stats quantile
31
-
##'
32
29
##' @param probes a single probe or a list of one or more probes.
33
30
##' A probe is simply a scalar- or vector-valued function of one argument that can be applied to the data array of a \sQuote{pomp}.
34
31
##' A vector-valued probe must always return a vector of the same size.
35
32
##' A number of useful probes are provided with the package:
36
33
##' see \link[=basic_probes]{basic probes}.
37
34
##' @param nsim the number of model simulations to be computed.
38
-
##' @param seed optional integer;
39
-
##' if non-\code{NULL}, the random number generator will be initialized with this seed for simulations.
40
-
##' See \code{\link{simulate}}.
35
+
##' @inheritParams pfilter
36
+
##' @inheritParams simulate
41
37
##' @inheritParams pomp
42
-
##'
43
38
##' @return
44
39
##' \code{probe} returns an object of class \sQuote{probed_pomp}, which contains the data and the model, together with the results of the \code{probe} calculation.
0 commit comments