excludePairing {dvir} | R Documentation |
Exclude pairings
Description
Disallow certain pairings by removing them from the list dvi$pairings
of
candidate pairings for a given victim sample.
Usage
excludePairing(dvi, victim, missing)
Arguments
dvi |
A |
victim |
The name of a single victim sample. |
missing |
The name(s) of one or several missing individuals. |
Value
A dviData
object.
Examples
# Disallow V1 = M1 in the `example2` dataset:
ex = excludePairing(example2, victim = "V1", missing = "M1")
jointDVI(ex, verbose = FALSE)
# Compare with original
jointDVI(example2, verbose = FALSE)
# The only difference is in the `pairings` slot:
ex$pairings
example2$pairings
[Package dvir version 3.2.1 Index]