From 811384552473be2252c3458afcd3fab81d21e51f Mon Sep 17 00:00:00 2001 From: "Aaron A. King" Date: Wed, 11 Dec 2024 18:13:33 -0500 Subject: [PATCH] an exception removed --- DESCRIPTION | 2 +- R/workhorses.R | 4 ++-- man/partrans.Rd | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index dac97e75..26d5d99a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: pomp Type: Package Title: Statistical Inference for Partially Observed Markov Processes -Version: 6.0.1.2 +Version: 6.0.1.3 Date: 2024-12-11 Authors@R: c(person(given=c("Aaron","A."),family="King",role=c("aut","cre"),email="kingaa@umich.edu",comment=c(ORCID="0000-0001-6159-3207")), person(given=c("Edward","L."),family="Ionides",role="aut",comment=c(ORCID="0000-0002-4190-0174")) , diff --git a/R/workhorses.R b/R/workhorses.R index 35224d3e..21e69af0 100644 --- a/R/workhorses.R +++ b/R/workhorses.R @@ -317,8 +317,8 @@ setMethod( definition=function ( object, params, - dir = c("fromEst", "toEst"), - ... + ..., + dir = c("fromEst", "toEst") ) { dir <- match.arg(dir) tryCatch( diff --git a/man/partrans.Rd b/man/partrans.Rd index 65efe843..1189664e 100644 --- a/man/partrans.Rd +++ b/man/partrans.Rd @@ -9,7 +9,7 @@ \alias{partrans,objfun-method} \title{partrans workhorse} \usage{ -\S4method{partrans}{pomp}(object, params, dir = c("fromEst", "toEst"), ...) +\S4method{partrans}{pomp}(object, params, ..., dir = c("fromEst", "toEst")) \S4method{partrans}{objfun}(object, ...) } @@ -20,9 +20,9 @@ This will typically be the output of \code{pomp}, \code{simulate}, or one of the \item{params}{a \code{npar} x \code{nrep} matrix of parameters. Each column is treated as an independent parameter set, in correspondence with the corresponding column of \code{x}.} -\item{dir}{the direction of the transformation to perform.} - \item{...}{additional arguments are ignored.} + +\item{dir}{the direction of the transformation to perform.} } \value{ If \code{dir=fromEst}, the parameters in \code{params} are assumed to be on the estimation scale and are transformed onto the natural scale.