Combine columns from multiple scanone results
Concatenate the columns from different runs of
scanone
.
## S3 method for class 'scanone' c(..., labels) ## S3 method for class 'scanone' cbind(..., labels)
... |
A set of objects of class |
labels |
A vector of character strings, of length 1 or of the same length as the input, to be appended to the column names in the output. |
The aim of this function is to concatenate the results from multiple
runs scanone
, generally for
different phenotypes and/or methods, to be used in parallel with
summary.scanone
.
The concatenated input, as a scanone
object.
Karl W Broman, broman@wisc.edu
data(fake.f2) fake.f2 <- calc.genoprob(fake.f2) out.hk <- scanone(fake.f2, method="hk") out.np <- scanone(fake.f2, model="np") out <- c(out.hk, out.np, labels=c("hk","np")) plot(out, lod=1:2, col=c("blue", "red"))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.