[[<-.GlobalOptionsFun {GlobalOptions} | R Documentation |
Set option value by subset operator
Description
Set option value by subset operator
Usage
## S3 replacement method for class 'GlobalOptionsFun'
x[[nm]] <- value
Arguments
x |
the option object returned by |
nm |
a single option name. |
value |
the value which is assigned to the option. |
Details
opt[["a"]] = 1
is same as opt("a" = 1)
or opt$a = 1
.
Author(s)
Zuguang Gu <z.gu@dkfz.de>
Examples
opt = set_opt(a = 1)
opt[["a"]] = 2
opt$a
[Package GlobalOptions version 0.1.2 Index]