Skip to contents

Display SciDB AFL operator documentation

Usage

aflhelp(topic, db)

Arguments

topic

an afl object from a SciDB database connection, or optionally a character string name

db

optional database connection from scidbconnect (only needed when topic is a character string)

Value

displays help

Examples

if (FALSE) { # \dontrun{
d <- scidbconnect()
aflhelp("list", d)     # explicitly look up a character string
help(d$list)        # same thing via R's \code{help} function
} # }