Learn R Programming

scidb (version 1.0-1)

scidblist: List SciDB database items.

Description

List arrays and various other items available in a SciDB database.

Usage

scidblist(pattern, type = c("arrays", "operators", "functions", "types", "aggregates", "instances","queries"), verbose = FALSE)

Arguments

pattern
Filter the list by a regular-expression style pattern.
type
A character string indicating the type of SciDB item to list--defaults to 'array.'
verbose
Include extra available information for some items (arrays, in particular).

Value

  • A data frame of listed items.

Examples

Run this code
# List information about the SciDB cluster we're connected to:
scidblist('instances')

# List all arrays:
scidblist()

# List all arrays beginning with "A:"
scidblist(pattern="^A")

Run the code above in your browser using DataLab