plot.simfam_tvc {FamEvent} | R Documentation |
Plot method for simfam_tvc
or Plot pedigrees
Description
Provides pedigree plots for specified families generated from simfam_tvc
function with option to save plots into a pdf file.
Usage
## S3 method for class 'simfam_tvc'
plot(x, famid, pdf = FALSE, file = NULL, ...)
Arguments
x |
An object of class |
famid |
List of family IDs to plot. Default is the first family in given data set. |
pdf |
Logical; if |
file |
File name to save the pedigree plots; Default file name is |
... |
Additional arguments passed on to the plot function. |
Details
Argument x
can be a data frame that contains famID
, indID
, fatherID
, motherID
, gender
(1 for male, 0 for female), status
(1 for affected, 0 for non-affected), mgene
(1 for mutation carrier, 0 for non-carrier, NA
for missing), and proband
(1 for proband, 0 for non-proband) and should have class attributes class(x) <- c("simfam", "data.frame")
.
Optionally, the data frame can contain a column named carrp.geno
or carrp.pheno
to replace missing values in mgene
with their carrier probabilities.
Value
Returns pedigree plots for specified families created by simfam_tvc
function or for the data frame provided along with the affection and carrier mutation statuses of family members. Probands from each pedigree are indicated using red color.
When object inlcudes carrp.geno
and/or carrp.pheno
generated by carrierprob
function, the plot
function displays the carrier probabilities for those with missing carrier status.
See Also
simfam_tvc, summary.simfam_tvc, carrierprob
Examples
# Simulated family data
set.seed(4321)
fam <- simfam_tvc(N.fam = 10, design = "pop", variation = "frailty",
base.dist = "Weibull", frailty.dist = "gamma", depend = 1,
add.tvc = TRUE, tvc.type = "CO", tvc.range = c(30,60),
tvc.parms = c(1, 0.1, 0), allelefreq = 0.02,
base.parms = c(0.01, 3), vbeta = c(-1.13, 2.35))
# Pedigree plots for first three simulated families
plot(fam, famid = c(1:2))