R/get_ncaa.R

Defines functions get_ncaa

Documented in get_ncaa

#' @title Logos and colors of NCAA basketball
#'
#' @description NCAA Basketball Div-1 data table with logos and colors
#'
#' @return Colors and logos from NCAA Basketball Div-1
#' @export
#' @import readr
#' @examples
#' get_ncaa ()
#'
get_ncaa  <- function() {

  get_ncaa <- readr::read_csv(url("https://raw.githubusercontent.com/IvoVillanueva/ncaa_logos/main/logos_2.csv"))

  return(get_ncaa)

}
IvoVillanueva/IvoNcaaR documentation built on Dec. 17, 2021, 11:32 p.m.