Quirks

Some R and Rserve quirks are:

Booleans

An R boolean has values FALSE (0), TRUE (1) and NA (2). Arithmetic can be done with TRUE and FALSE, while NA returns NA, for example:

> 1 + c(FALSE,TRUE,NA)
[1]  1  2 NA

A read of an R boolean returns a list of 0 1 and 2.

Writes to R booleans are not yet supported.

NULL

R has a NULL value. In the addon, this is represented as the string 'NULL'.

Not Yet Supported

Interfaces/R/Rserve/Quirks (last edited 2008-12-08 10:45:28 by )