parameters | R Documentation |
Get or set parameters for AnalysisParameters
or Analysis
class objects.
parameters(d, ...)
## S4 method for signature 'AnalysisParameters'
parameters(d, element)
## S4 method for signature 'Analysis'
parameters(d)
parameters(d, element) <- value
## S4 replacement method for signature 'AnalysisParameters'
parameters(d, element) <- value
## S4 replacement method for signature 'Analysis'
parameters(d) <- value
d |
S4 object of class |
... |
arguments to pass to the appropriate method |
element |
analysis element for parameters to extract or assign.
Should be one of those returned by |
value |
list containing parameter values |
p <- analysisParameters('pre-treatment')
## extract pre-treatment parameters
parameters(p,'pre-treatment')
## set pre-treatment parameters
parameters(p,'pre-treatment') <- preTreatmentParameters(
list(
remove = 'classes',
QC = c('RSDfilter','removeQC'),
transform = 'TICnorm'
)
)
print(p)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.