Learn R Programming

Andromeda (version 0.6.7)

copyAndromeda: Copy Andromeda

Description

Creates a complete copy of an Andromeda object. Object attributes are not copied.

Usage

copyAndromeda(andromeda)

Value

The copied Andromeda object.

Arguments

andromeda

The Andromeda object to copy.

Examples

Run this code
andr <- andromeda(cars = cars, iris = iris)

andr2 <- copyAndromeda(andr)

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

close(andr)
close(andr2)

Run the code above in your browser using DataLab