pmx_copy {ggPMX} | R Documentation |
Creates a deep copy of the controller
Description
Creates a deep copy of the controller
Usage
pmx_copy(ctr, keep_globals = FALSE, ...)
Arguments
ctr |
|
keep_globals |
|
... |
extra parameters passed to |
Details
The controller is an 'R6' object, it behaves like a reference object.
Some functions ( methods) can have a side effect on the controller and modify it internally.
Technically speaking we talk about chaining not piping here. However ,
using pmx_copy
user can work on a copy of the controller.
By default the copy does not keep global parameters set using pmx_settings.
Value
an object of pmxClass
Examples
ctr <- theophylline()
cctr <- ctr %>% pmx_copy()
## Any change in the ctr has no side effect in the ctr and vice versa
[Package ggPMX version 1.2.11 Index]