R/cna-deprecated.R

Defines functions fscond mvcond cscond fsct mvct csct fscna mvcna cscna

Documented in cscna cscond csct fscna fscond fsct mvcna mvcond mvct

# Function deprecated from 4.0.0
cscna <- function(...){
  .Deprecated("cna", package = "cna")
  cna(..., type = "cs")
}
mvcna <- function(...){
  .Deprecated("cna", package = "cna")
  cna(..., type = "mv")
}
fscna <- function(...){
  .Deprecated("cna", package = "cna")
  cna(..., type = "fs")
}

csct <- function(...){
  .Deprecated("configTable", package = "cna")
  configTable(..., type = "cs")
}
mvct <- function(...){
  .Deprecated("configTable", package = "cna")
  configTable(..., type = "mv")
}
fsct <- function(...){
  .Deprecated("configTable", package = "cna")
  configTable(..., type = "fs")
}

cscond <- function(...){
  .Deprecated("condition", package = "cna")
  condition(..., type = "cs")
}
mvcond <- function(...){
  .Deprecated("condition", package = "cna")
  condition(..., type = "mv")
}
fscond <- function(...){
  .Deprecated("condition", package = "cna")
  condition(..., type = "fs")
}

Try the cna package in your browser

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

cna documentation built on April 11, 2025, 6:10 p.m.