Description Usage Arguments Value Author(s) Examples
This function orders all internal standards (is) in a given data set so that they appear as the last rows (after the normal species). The purpose for this is mainly to get a better overview of the data types when manually inspecting the data.
1 |
data |
data formatted by the use of the mergeDataSet function from LipidQ. |
userSpecifiedColnames |
the column names template file containing user specified column names for the input data. This file |
a sorted data set
André Vidas Olsen
1 2 3 4 5 6 7 8 9 | mergedDataSets <- read.table(system.file("extdata/dataTables/checks",
"mergedDataSets.csv", package = "lipidQ"), stringsAsFactors = FALSE,
header = TRUE, sep = ",")
list <- read.table(system.file("extdata/LipidQ_DataBase",
"userSpecifiedColnames.csv", package = "lipidQ"),
stringsAsFactors = FALSE, header = TRUE, sep = ",")
sortedData <- sort_is(mergedDataSets, userSpecifiedColnames = list)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.