| plot.rf {qtl} | R Documentation |
Plot a grid showing the recombination fractions for all pairs of markers, or of the LOD scores between pairs of markers.
plot.rf(x, chr, which="both", ...)
x |
An object of class cross. See
read.cross for details. |
chr |
Vector specifying which chromosomes to plot (optional) |
which |
Indicate whether to plot LOD scores, recombination
fractions or both (lod, rf or
both). |
... |
Ignored at this point. |
Uses image to plot a grid showing either the
recombination fractions or LOD scores for all pairs of markers or
both (in which case LOD scores are in the lower triangle and
recombination fractions are in the upper triangle).
Note that missing values appear in gray.
Karl W Broman,
kbroman@jhsph.edu
http://biosun01.biostat.jhsph.edu/~kbroman/software/qtl.html
data(fake.bc) fake.bc <- est.rf(fake.bc) plot.rf(fake.bc) plot.rf(fake.bc,which="lod") plot.rf(fake.bc,c(1,5),which="rf")