#' Inital Function
#'
#' @param .data DataFrame or Tibble
firstColumn = function(.data){
stopifnot(is.data.frame(.data))
if(ncol(.data) == 0)
stop("Could not select the first column of a dataframe with 0 columns")
.data[,1, drop = F]
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.