copyAndromeda {Andromeda} | R Documentation |
Copy Andromeda
Description
Creates a complete copy of an Andromeda
object. Object attributes are not copied.
Usage
copyAndromeda(andromeda, options = list())
Arguments
andromeda |
The |
options |
A list containing Andromeda options. Currently the only supported option is 'threads'.
Setting |
Value
The copied Andromeda
object.
Examples
andr <- andromeda(cars = cars, iris = iris)
andr2 <- copyAndromeda(andr)
names(andr2)
# [1] 'cars' 'iris'
close(andr)
close(andr2)
[Package Andromeda version 1.0.0 Index]