R/prepare_exclude.R

Defines functions prepare_exclude

prepare_exclude <- function(var, notmod, name_x){
  
  if(is.null(notmod)){
    notmod <- list() 
  }
  
  for(i in name_x[-var]){
    notmod[[length(notmod)+1]] <- c(name_x[var],i)
  }
 
  return(notmod) 
}

Try the TSVC package in your browser

Any scripts or data that you put into this service are public.

TSVC documentation built on Oct. 17, 2023, 5:12 p.m.