Learn R Programming

qtl (version 1.44-9)

cbind.scantwoperm: Combine scantwo permutations by column

Description

Column-bind permutations results from scantwo for multiple phenotypes or models.

Usage

# S3 method for scantwoperm
cbind(…)

Arguments

A set of objects of class scantwoperm. (This can also be a list of scantwoperm objects.) These are the permutation results from scantwo (that is, when n.perm > 0). These must all concern the same number of permutations.

Value

The column-binded input, as a scantwoperm object.

See Also

scantwo, c.scantwoperm, summary.scantwoperm

Examples

Run this code
# NOT RUN {
data(fake.bc)
# }
# NOT RUN {
fake.bc <- calc.genoprob(fake.bc)
# }
# NOT RUN {
operm1 <- scantwo(fake.bc, pheno.col=1, method="hk", n.perm=50)
operm2 <- scantwo(fake.bc, pheno.col=2, method="hk", n.perm=50)
# }
# NOT RUN {
operm <- cbind(operm1, operm2)
# }

Run the code above in your browser using DataLab