copyAndromeda: Copy Andromeda

View source: R/Object.R

copyAndromedaR 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 Andromeda object to copy.

options

A list containing Andromeda options. Currently the only supported option is 'threads'. Setting options = list(threads = 10) will set the database used by Andromeda to use 10 threads.

Value

The copied Andromeda object.

Examples

andr <- andromeda(cars = cars, iris = iris)

andr2 <- copyAndromeda(andr)

names(andr2)
# [1] 'cars' 'iris'

close(andr)
close(andr2)


Andromeda documentation built on June 8, 2025, 11:20 a.m.