1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
\name{plot.missing}
\alias{plot.missing}
\title{Plot grid of missing genotypes}
\description{
Plot a grid showing which genotypes are missing.
}
\usage{
plot.missing(x, chr, reorder=FALSE, main="Missing genotypes",
alternate.chrid=FALSE, \dots)
}
\arguments{
\item{x}{An object of class \code{cross}. See
\code{\link[qtl]{read.cross}} for details. }
\item{chr}{Vector of chromosomes to plot. If missing, plot all
chromosomes.}
\item{reorder}{Specify whether to reorder individuals according to
their phenotypes.
\tabular{ll}{
FALSE \tab Don't reorder \cr
TRUE \tab Reorder according to the sum of the phenotypes \cr
n \tab Reorder according to phenotype n}}
\item{main}{Title to place on plot.}
\item{alternate.chrid}{If TRUE and more than one chromosome is
plotted, alternate the placement of chromosome
axis labels, so that they may be more easily distinguished.}
\item{\dots}{Ignored at this point.}
}
\details{
Uses \code{\link[graphics]{image}} to plot a grid with black pixels where the
genotypes are missing. For intercross and 4-way cross data, gray
pixels are plotted for the partially missing genotypes (for example,
``not AA'').
}
\value{None.}
\examples{
data(fake.f2)
plot.missing(fake.f2)
}
\seealso{ \code{\link[qtl]{plot.cross}}, \code{\link[qtl]{geno.image}},
\code{\link[graphics]{image}} }
\author{Karl W Broman, \email{kbroman@biostat.wisc.edu} }
\keyword{hplot}
|