R/q1Config.R

Defines functions q1CovCase q1Config

q1Config <- function(Config)
{
  if (length(intersect(c(1,2,3),Config)>0)) C1 <- 1
  else  C1 <- NULL
  if (length(intersect(c(4,5),Config)>0)) C5 <- 5
  else C5 <- NULL
  c(C1,C5)
}

q1CovCase <- function(CovCase)
{
  if (length(intersect(c(1,2),CovCase)>0)) C1 <- 1
  else  C1 <- NULL
  if (length(intersect(c(3,4),CovCase)>0)) C4 <- 4
  else C4 <- NULL
  c(C1,C4)
}

Try the MAINT.Data package in your browser

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

MAINT.Data documentation built on April 4, 2023, 9:09 a.m.