| pedigree.legend | R Documentation | 
circular legend for a pedigree as a key to the affection statuses
pedigree.legend(
  ped,
  labels = dimnames(ped$affected)[[2]],
  edges = 200,
  radius = NULL,
  location = "bottomright",
  new = TRUE,
  density = c(-1, 35, 65, 20),
  angle = c(90, 65, 40, 0),
  ...
)
ped | 
 Pedigree data frame with ped (pedigree id), id (id of individual), father (id of father), mother (id of mother), sex, affected (affection status), and avail (DNA availability).  | 
labels | 
 names for the affected indicators  | 
edges | 
 Number of edges for each polygon. Higher numbers give better resolution for the circle  | 
radius | 
 radius (inches) of the circle  | 
location | 
 similar to how the location of a base-R legend is given, used only if new=TRUE. A character string indicating which of the four corners to plot the legend, given by "bottomright", "bottomleft", "topleft", or "topright".  | 
new | 
 Logical. If TRUE, plot the legend on the current plot. Otherwise, plot on a separate plot.  | 
density | 
 Density of lines shaded in sections of the circle. These match the density settings for the plot.pedigree function.  | 
angle | 
 The angle at which lines are shaded in sections of the circle. These match the angles for the plot.pedigree function.  | 
... | 
 optional parameters for the plot function that apply to text  | 
Jason Sinnwell
pedigree, plot.pedigree
## Not run: 
data(sample.ped)
fam1 <- sample.ped[sample.ped$ped==1,]
ped1 <- with(fam1, pedigree(id, father, mother, sex,
             affected=cbind(avail,affected)))
plot(ped1)
pedigree.legend(ped1, location="bottomright", radius=.8)
pedigree.legend(ped1, location="topleft", radius=.6, cex=1.2)
pedigree.legend(ped1, new=FALSE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.