R/ParseTouchdown.R

Defines functions ParseTouchdown

Documented in ParseTouchdown

#' @title Identify touchdowns
#' 
#' 
#' @export


ParseTouchdown <- function(x){
  x$Touchdown = grepl('touchdown', x[,'scoreText'])
  x
}
JackStat/cfb documentation built on May 7, 2019, 10:17 a.m.