censor_code_rl function

Censor code right-left

Censor code right-left

Creates censoring code 0:3.

censor_code_rl(left, right)

Details

For internal use

Examples

## The function is currently defined as function(left, right) { test_ <- function(k) { if (is.na(left[[k]]) & is.na(right[[k]])) { NA } else if (is.na(left[[k]])) { 2 } else if (is.na(right[[k]])) { 0 } else if (left[[k]] == right[[k]]) { 1 } else { 3 } } sapply(seq_along(left), FUN = test_) }
  • Maintainer: Guillaume Kon Kam King
  • License: GPL (>= 2)
  • Last published: 2023-03-24

Useful links