#' Checks whether any values in a dataframe are complex
#' @param data The dataframe
#' @export
any_complex <- function(data) {
any(sapply(data, is.complex))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.