[R] can the matrix size limit be increased?

2008-02-29 Thread Robert Leach
Hi there, I'm brand new to R, so let me know if this question is not appropriate for this list. I've been reading through the documentation and have tried a number of things, but am pretty much stuck so far. Here's the session info: sessionInfo() R version 2.6.2 (2008-02-08)

Re: [R] can the matrix size limit be increased?

2008-02-29 Thread jim holtman
You only have 1 row in your matrix, so what you are getting printed out is not an empty matrix, but the header. If you print the transpose you get: head(t(tst)) [,1] [1,]1 [2,]2 [3,]3 [4,]4 [5,]5 [6,]6 The default is to only print out 10 values. Your data is