Nothing
#' This gets the monolix endpoint information in the model
#'
#'
#' @param mlxtran This is the parsed mlxtran or imported rxode2 model from monolix
#'
#' @return nothing, called for side effects
#' @noRd
#' @author Matthew L. Fidler
monolixEndpoints <- function(mlxtran) {
mlxtran <- .monolixGetMlxtran(mlxtran)
if (is.null(mlxtran)) return(NULL)
.end <- mlxtran$MODEL$LONGITUDINAL$DEFINITION$endpoint
vapply(seq_along(.end),
function(i) {
.end[[i]]$var
}, character(1), USE.NAMES = FALSE)
}
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.