renjin icon indicating copy to clipboard operation
renjin copied to clipboard

print() function does not properly print arrays with dimensions > 2

Open akbertram opened this issue 10 years ago • 0 comments

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.

akbertram avatar Jul 06 '14 20:07 akbertram