#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#' Convert a logical to a lofi representation
#'
#' @param lofi lofi representation
#' @param lgl single logical value
#'
#' @return lofi representation
#'
#' @export
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
lgl_to_lofi <- function(lgl) {
stopifnot(is.logical(lgl))
stopifnot(!any(is.na(lgl)))
as.integer(lgl)
}
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#' @rdname lgl_to_lofi
#' @export
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
lofi_to_lgl <- function(lofi) {
as.logical(lofi)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.