Nothing
check_df <- function(d){
if(!inherits(d, "data.frame")){
cli::cli_abort(c("{.var d} should be a dataframe or tibble."))
}
}
check_pairwise <- function(d){
if(!inherits(d, "pairwise")){
if (!identical(names(d), names(pairwise(data.frame()))))
cli::cli_abort(c("{.var d} should be of class pairwise."))
}
}
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.