diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2023-03-20 22:40:20 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2023-03-20 22:40:20 +0100 |
commit | 28286eeaca84c85d2f4c3cddc9524d56d23b9aa0 (patch) | |
tree | 85f8a3156875ad320c313079d560439d28ee3ff2 /R/endpoints.R | |
parent | dd525f49b852376f24851f23c36d6c50f23dbf82 (diff) |
Support covariates in parms and plot.saem.mmkin
Diffstat (limited to 'R/endpoints.R')
-rw-r--r-- | R/endpoints.R | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/R/endpoints.R b/R/endpoints.R index 0c26ffae..9ea0e598 100644 --- a/R/endpoints.R +++ b/R/endpoints.R @@ -38,7 +38,7 @@ #' } #' #' @export -endpoints <- function(fit, ...) { +endpoints <- function(fit, ..., covariates = mean) { mkinmod <- fit$mkinmod obs_vars <- names(mkinmod$spec) |