Nothing
#' Get the string of the mutate statement for input dataset based on
#' mlxtran
#'
#' @param mlxtran input mlxtran file
#' @return mlxtran string that can be applied to a model (by evaluating it)
#' @noRd
#' @author Matthew L. Fidler
#' @examples
#'
#' covD <- system.file("cov", package="monolix2rx")
#' m <- mlxtran(file.path(covD, "phenobarbital_project.mlxtran"))
#' message(mlxtranGetMutate(m))
mlxtranGetMutate <- function(mlxtran) {
.cov <- mlxtran$MODEL$COVARIATE$COVARIATE
.mutate <- character(0)
# Convert all covariates to factors
if (!is.null(.cov)) {
.cat <- .cov$cat
.mutate <- paste0("\tdplyr::mutate(", paste(vapply(names(.cat), function(x) {
paste0(x, "=factor(as.character(", x, "), labels=", deparse1(.cat[[x]]$cat), ")")
}, character(1), USE.NAMES=TRUE), collapse=", "), ")")
}
.cov <- mlxtran$MODEL$COVARIATE$EQUATION
if (!is.null(.cov)) {
.mutate <- c(.mutate,
paste0("dplyr::mutate(",
paste(.cov$dplyr, collapse=",\n\t\t"),
")"))
}
if (length(.mutate) == 0) return(NULL)
# Add equations
paste(.mutate, collapse=" |> \n\t")
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.