EzResult-class | R Documentation |
The object that represents a result of an expression analysis
param
EzParam
object that was used during the result generation
rawData
list with the rawData that was used during the result generation
result
list holding the actual results, in particular, the log2 ration and the p-value
saveToFile(file):
Saves the object to the given filepath. Saved files can be loaded with EzResult$new(file="mystoredResult.RData"
Rehrauer, Hubert
Schmid, Peter
deResult = EzResult$new()
deResult = EzResult$new(param=list(p1="p1", p2="p2"), rawData=list(a=0, b=1), result=list(u=0, v=1))
rdFile = tempfile(fileext = ".RData")
deResult$saveToFile(file = rdFile)
deResult2 = EzResult$new(file=rdFile)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.