Description Usage Arguments Value Examples
View source: R/ResultSet_exportResults.R
Exports results to csv files. If more than one variable is present, subfolders with the name of the variable are created. For each variable, four files will be generated: probeResults.csv, dmrCateResults.csv, bumphunterResults.csv and blockFinderResults.csv
1 2 3 4 5 6 | exportResults(
object,
dir = "./",
prefix = NULL,
fNames = c("chromosome", "start")
)
|
object |
|
dir |
Character with the path to export. |
prefix |
Character with a prefix to be added to all file names. |
fNames |
Names of the columns of |
Files are saved into the given folder.
1 2 3 4 5 | if (require(minfiData)){
set <- ratioConvert(mapToGenome(MsetEx[1:10,]))
methyOneVar <- runPipeline(set, variable_names = "sex")
exportResults(methyOneVar)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.