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 54 55 56 57 58
|
\name{hyper}
\alias{hyper}
\title{Data on hypertension}
\description{
Data from an experiment on hypertension in the mouse.
}
\usage{data(hyper)}
\format{
An object of class \code{cross}. See \code{\link[qtl]{read.cross}}
for details.
}
\details{
There are 250 male backcross individuals typed at 174 markers (actually one
contains only missing values), including 4 on the X chromosome, with one
phenotype.
The phenotype is the blood pressure. See the reference below. Note
that, for most markers, genotypes are available on only the individuals
with extreme phenotypes. At many markers, only recombinant individuals
were typed.
}
\references{
Sugiyama, F., Churchill, G. A., Higgens, D. C., Johns, C.,
Makaritsis, K. P., Gavras, H. and Paigen, B. (2001) Concordance of
murine quantitative trait loci for salt-induced hypertension with rat
and human loci. \emph{Genomics} \bold{71}, 70--77.
}
\source{
Bev Paigen and Gary Churchill (The Jackson Laboratory, Bar Harbor,
Maine)
\url{http://www.jax.org/research/churchill/datasets/qtl/qtlarchive}
}
\examples{
data(hyper)
summary(hyper)
plot(hyper)
# Note the selective genotyping
plot.missing(hyper, reorder=TRUE)
# A marker on c14 has no data; remove it
hyper <- drop.nullmarkers(hyper)
}
\seealso{ \code{\link[qtl]{fake.bc}}, \code{\link[qtl]{fake.f2}},
\code{\link[qtl]{fake.4way}}, \code{\link[qtl]{listeria}},
\code{\link[qtl]{bristle3}}, \code{\link[qtl]{bristleX}} }
\keyword{datasets}
|