Nothing
##' CV of log-normal dist baed on omega parameters
##' CV based variance like provided in Nonmem's \code{OMEGA} metrix.
##' @param omega A variance as provided in diagonal om the Nonmem OMEGA matrix
##' @return CV of the distribution (numeric)
##' @details This is a very simple function. All it does is
##' \code{sqrt(exp(omega)-1)}.
##' @export
##'
CVlnorm <- function(omega){
sqrt(exp(omega)-1)
}
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.