cens_data_check function

Censoring data check

Censoring data check

Checks that a censored dataset is valid. This performs two checks: check that the dataset does not contain only NA, and check that the for interval censored data, the bounds are in the right order.

cens_data_check(xleft, xright)

Arguments

  • xleft: left bounds for the censored dataset. Can be a real number or NA
  • xright: right bounds for the censored dataset

Details

For internal use

Examples

## The function is currently defined as function(xleft, xright) { if (any(xright < xleft, na.rm = T)) { stop("in censored data, left bound not always smaller than right bound") } if (any(mapply(FUN = function(xileft, xiright) { is.na(xileft) & is.na(xiright) }, xleft, xright))) { stop("in censored data, there is an NA NA") } }
  • Maintainer: Guillaume Kon Kam King
  • License: GPL (>= 2)
  • Last published: 2023-03-24

Useful links