R/specialChars.R

Defines functions specialChars

Documented in specialChars

#' Identify item names with special characters
#' 
#' @param OCstack A stacked dataset of the CRFs see read.forms
#'
#' @author Tyler Hunt \email{tyler.hunt@@utah.edu}


specialChars<-function(OCstack){
  
  items<-as.character(OCstack$ITEM_NAME)
  
  items[!str_detect(items,"^[a-zA-Z0-9 _]*$")]

}
JackStat/OCtesting documentation built on May 7, 2019, 10:17 a.m.