cens_data_check: Censoring data check

View source: R/cens_data_check.R

cens_data_checkR Documentation

Censoring data check

Description

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.

Usage

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")
  }
}

konkam/BNPdensity documentation built on March 14, 2024, 7:15 a.m.