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
|
\name{plot.scanoneboot}
\alias{plot.scanoneboot}
\title{Plot results of bootstrap for QTL position.}
\description{
Plot a histogram of the results of a nonparametric bootstrap to assess
uncertainty in QTL position.
}
\usage{
\method{plot}{scanoneboot}(x, \dots)
}
\arguments{
\item{x}{An object of class \code{"scanoneboot"}, as output by
\code{\link[qtl]{scanoneboot}}.}
\item{\dots}{Passed to the function \code{\link[graphics]{hist}} when it
is called.}
}
\value{None.}
\details{
The function plots a histogram of the bootstrap results obtained by
\code{\link[qtl]{scanoneboot}}. Genetic marker locations are
displayed by vertical lines at the bottom of the plot.
}
\examples{
data(fake.f2)
fake.f2 <- calc.genoprob(fake.f2, step=1)
\dontrun{out.boot <- scanoneboot(fake.f2, chr=13, method="hk")}
\dontshow{out.boot <- scanoneboot(fake.f2, chr=13, method="hk", n.boot=50)}
summary(out.boot)
plot(out.boot)
}
\seealso{ \code{\link[qtl]{scanone}},
\code{\link[qtl]{summary.scanoneboot}} }
\author{Karl W Broman, \email{kbroman@biostat.wisc.edu} }
\keyword{hplot}
|