# my_complete_cases ####
#' my complete cases
#'
#' @export
my_complete_cases <- function(data) {
data <- do.call(data.frame, lapply(data, function(x) replace(x, is.infinite(x), NA)))
complete.cases(data)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.