renjin
renjin copied to clipboard
print() function does not properly print arrays with dimensions > 2
v = c(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11) dim(v) = c(2, 2, 3) print(v)
[1] 0 1 2 3 4 5 6 7 8 9 10 11
Now, doing
class(v)
array.
So, the class is right, but the printing seems to be wrong.