Learn R Programming

scidb (version 1.0-1)

scidbremove: Remove an array.

Description

Remove (delete) an array from SciDB.

Usage

scidbremove(x, error = stop)

Arguments

x
The name of the SciDB array to remove (character). This may also be a vector of names to remove.
error
Error handling function.

Value

  • NULL is invisibly returned. SciDB errors are returned as normal R errors and may be handled accordingly.

Examples

Run this code
df2scidb(cars)
df2cidb(iris)
scidbremove(c("iris","cars","undefined"), error=warning)

# Remove everything (caution!)
scidbremove(scidblist())

Run the code above in your browser using DataLab