Description Usage Arguments Details Value Author(s) Examples
A function to modify the sectionData slot of a beadLevelData
object. Data can be be added if it is a data frame with a number of rows equal to the number of sections in the beadLevelData object.
1 | insertSectionData(BLData, what, data)
|
BLData |
a |
what |
a character string specifiying a name for the new data |
data |
a data frame containing the data we wish to add |
This function allows users to modifiy the per\-section information that is included in the sectionData slot. Typical usage would be to store quality control data that has been computed.
a modified beadLevelData
object with the new data attached to sectionData
Mark Dunning
1 2 3 4 5 6 7 8 9 10 11 | if(require(beadarrayExampleData)){
data(exampleBLData)
qct = makeQCTable(exampleBLData)
exampleBLData = insertSectionData(exampleBLData, what="ProbeQC", data = qct)
exampleBLData@sectionData
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.