Nothing
#' Generate nicely formatted lambda vec
#'
#' @param l Vector of lambda values.
#'
#' @return A character vector of formatted lambda value names
#'
#' @keywords internal
#'
#' @rdname lam_names
#'
lam_names <- function(l) {
if (length(l) > 1) {
d <- ceiling(-log10(-max(diff(l))))
d <- min(max(d,4), 10)
} else {
d <- 4
}
formatC(l, format="f", digits=d)
}
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.