EVOLUTION-MANAGER
Edit File: c.scanone.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Combine columns from multiple scanone results</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for c.scanone {qtl}"><tr><td>c.scanone {qtl}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Combine columns from multiple scanone results</h2> <h3>Description</h3> <p>Concatenate the columns from different runs of <code><a href="scanone.html">scanone</a></code>. </p> <h3>Usage</h3> <pre> ## S3 method for class 'scanone' c(..., labels) ## S3 method for class 'scanone' cbind(..., labels) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>...</code></td> <td> <p>A set of objects of class <code>scanone</code>. (This can also be a list of <code>scanone</code> objects.) These are the results from <code><a href="scanone.html">scanone</a></code> (with <code>n.perm=0</code>), generally run with different phenotypes or methods. All must conform with each other, meaning that <code><a href="calc.genoprob.html">calc.genoprob</a></code> and/or <code><a href="sim.geno.html">sim.geno</a></code> were run with the same values for <code>step</code> and <code>off.end</code> and with data having the same genetic map.</p> </td></tr> <tr valign="top"><td><code>labels</code></td> <td> <p>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.</p> </td></tr> </table> <h3>Details</h3> <p>The aim of this function is to concatenate the results from multiple runs <code><a href="scanone.html">scanone</a></code>, generally for different phenotypes and/or methods, to be used in parallel with <code><a href="summary.scanone.html">summary.scanone</a></code>. </p> <h3>Value</h3> <p>The concatenated input, as a <code>scanone</code> object.</p> <h3>Author(s)</h3> <p>Karl W Broman, <a href="mailto:broman@wisc.edu">broman@wisc.edu</a> </p> <h3>See Also</h3> <p><code><a href="summary.scanone.html">summary.scanone</a></code>, <code><a href="scanone.html">scanone</a></code>, <code><a href="cbind.scanoneperm.html">cbind.scanoneperm</a></code> </p> <h3>Examples</h3> <pre> 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")) </pre> <hr /><div style="text-align: center;">[Package <em>qtl</em> version 1.46-2 <a href="00Index.html">Index</a>]</div> </body></html>