#' Any column true is true in a dataframe
#'
#' @param dataframe
#'
#' @return character
#' @export
#'
#' @examples any_col(dataframe)
any_col <- function(dataframe){
for (i in 1:ncol(dataframe)) {
if (i==1){result=c()}
result=c(result,any(dataframe[,i]))
}
return(result)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.