aboutsummaryrefslogtreecommitdiff
path: root/R
diff options
context:
space:
mode:
authorJohannes Ranke <johannes.ranke@jrwb.de>2025-02-13 14:45:54 +0100
committerJohannes Ranke <johannes.ranke@jrwb.de>2025-02-13 14:45:54 +0100
commit480c5cf42e07a7a62cf1afdb47c44ee2d04f120f (patch)
tree85fb5d25b17cc54ab8127f169f906dfc7e93748a /R
parent5c54f39802ec2898cd36916ae09e7873a9e95239 (diff)
parent051aebaebd40f3958fa22fb712401d0fe8e9a025 (diff)
Merge branch 'devel'
Diffstat (limited to 'R')
-rw-r--r--R/mkinpredict.R4
-rw-r--r--R/nlme.R2
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
diff --git a/R/nlme.R b/R/nlme.R
index 6b2d06d0..de82d99c 100644
--- a/R/nlme.R
+++ b/R/nlme.R
@@ -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")

Contact - Imprint