Learn R Programming

scidb (version 1.2-0)

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","libraries"), verbose = FALSE, n = Inf)

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).
n
Maximum number of rows to return.

Value

A data frame of listed items.

Examples

Run this code
## Not run: 
# # 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")
# ## End(Not run)

Run the code above in your browser using DataLab