diff options
author | Johannes Ranke <johannes.ranke@jrwb.de> | 2025-02-13 12:43:29 +0100 |
---|---|---|
committer | Johannes Ranke <johannes.ranke@jrwb.de> | 2025-02-13 13:48:57 +0100 |
commit | 328d1173db2395c1a5705b5f0980e2956db8be1f (patch) | |
tree | ce7eb2d2476230c0b8935eeb2d42b5234479e670 /R | |
parent | ba3eaa0d61d4980a61ebbcd105f07d21dd2aabb6 (diff) |
Update wordlist, bump date and simplify DESCRIPTION
Also, the R-Universe URL that the badge points to is updated
Diffstat (limited to 'R')
-rw-r--r-- | R/mkinpredict.R | 4 | ||||
-rw-r--r-- | R/nlme.R | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/R/mkinpredict.R b/R/mkinpredict.R index 60456fb2..4c6d7862 100644 --- a/R/mkinpredict.R +++ b/R/mkinpredict.R @@ -22,7 +22,7 @@ #' variables. The third possibility "eigen" is fast in comparison to uncompiled #' ODE models, but not applicable to some models, e.g. using FOMC for the #' parent compound. -#' @param method.ode The solution method passed via [mkinpredict] to [ode]] in +#' @param method.ode The solution method passed via [mkinpredict] to `deSolve::ode()` in #' case the solution type is "deSolve" and we are not using compiled code. #' When using compiled code, only lsoda is supported. #' @param use_compiled If set to \code{FALSE}, no compiled version of the @@ -36,7 +36,7 @@ #' the observed variables (default) or for all state variables (if set to #' FALSE). Setting this to FALSE has no effect for analytical solutions, #' as these always return mapped output. -#' @param na_stop Should it be an error if [ode] returns NaN values +#' @param na_stop Should it be an error if `deSolve::ode()` returns NaN values #' @param \dots Further arguments passed to the ode solver in case such a #' solver is used. #' @return A matrix with the numeric solution in wide format @@ -126,7 +126,7 @@ nlme_function <- function(object) { #' @rdname nlme #' @importFrom rlang !!! -#' @return A \code{\link{groupedData}} object +#' @return A `nlme::groupedData` object #' @export nlme_data <- function(object) { if (nrow(object) > 1) stop("Only row objects allowed") |