#' Read in files
#'
#' @param filepath
#'
#' @return
#' @export
#'
#' @examples
readIn <- function(filepath){
IRoutput <- readr::read_tsv(filepath,
comment = "##", skip_empty_rows = TRUE) %>%
janitor::clean_names()
return(IRoutput)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.