Learn R Programming

Andromeda (version 0.5.0)

isValidAndromeda: Check whether an Andromeda object is still valid

Description

Check whether an Andromeda object is still valid

Usage

isValidAndromeda(x)

Arguments

x

The Andromeda object to check.

Value

A logical value.

Details

Checks whether an Andromeda object is still valid, or whether it has been closed.

Examples

Run this code
# NOT RUN {
andr <- andromeda(cars = cars, iris = iris)

isValidAndromeda(andr)
# TRUE

close(andr)

isValidAndromeda(andr)
# FALSE

# }

Run the code above in your browser using DataLab