# NOT RUN {
# Example
# }
# NOT RUN {
library(Familias)
data(NorwegianFrequencies)
locus1 = FamiliasLocus(NorwegianFrequencies$TH01)
persons <- c("mother", "daughter", "AF")
ped1 <- FamiliasPedigree(id=persons, dadid=c(NA, "AF", NA), momid=c(NA, "mother", NA),
sex=c("female", "female", "male"))
datamatrix <- data.frame(THO1.1=c(NA, 8, NA), THO1.2=c(NA,9.3, NA))
rownames(datamatrix) = persons
x = Familias2linkdat(ped1, datamatrix, locus1)
plotPedList(list(x), new=TRUE, frametitles=c("H1"), available="shaded", marker = 1)
# Example
library(fam2r)
data(F21)
pedigrees = F21$pedigrees
datamatrix = F21$datamatrix
loci = F21$loci
x = Familias2linkdat(pedigrees, datamatrix, loci)
plotPedList(x, new=TRUE, frametitles=c("H1", "H2"), available="shaded")
# Give dev.width explicitly to allow for long names
plotPedList(x, new=TRUE, frametitles=c("H1", "H2"), available="shaded",
dev.width=17)
# Numerical labels work better
plotPedList(x, new=TRUE, id.labels="num", frametitles=c("H1", "H2"),
available="shaded")
# }
Run the code above in your browser using DataLab