| Process {unknown} | R Documentation |
The Process function implements a simple call interface to Processing functions from R.
Process(f = NULL, ...)
f |
A Processing function name (unquoted) |
... |
The corresponding function arguments |
The first time the Process function runs it builds a table of available Processing methods which can results in a brief delay. Subsequent calls consult the cached tables. The function builds an off-line cache of Processing functions in the user's home directory in a file called .processingMethods.cache.
The return value varies depending on the function call. See the Processing documentation.
The Process function uses a simple heuristic to match function arguments. It may not always succeed–if you encounter an unexpected error, explicitly cast arguments to the desired type.
B. W. Lewis <bwaynelewis@gmail.com
http://www.processing.org
# Process (rect, 10,10,50,100)