i1 : RObject {true, false, true, false}
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o1 = TRUE, FALSE, TRUE, FALSE
o1 : RObject of type logical
|
i2 : RObject {2, 4, 6, 8, 10}
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o2 = 2, 4, 6, 8, 10
o2 : RObject of type integer
|
i3 : RObject {0, 1/2, exp 1}
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o3 = 0, 0.5, 2.71828182845905
o3 : RObject of type double
|
i4 : RObject apply(3, k -> exp(2*k*pi*ii/3))
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o4 = 1+0i, -0.5+0.866025403784439i, -0.5-0.866025403784438i
o4 : RObject of type complex
|
i5 : RObject {"foo", "bar", "baz"}
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o5 = foo, bar, baz
o5 : RObject of type character
|