Re: [R] about data export

2010-03-29 Thread David Winsemius
On Mar 29, 2010, at 9:29 AM, meghana kulkarni wrote: Hello all, This is Meghana. Well, I have some analysis output in 3 dimensional array form. for example: , , type1 A B C D 1 2 3 4 1 2 3 4 , , type2 ?write.table > arr <- array(1:27, c(3,3,3)) > write.table(arr[, , 1])

Re: [R] about data export

2010-03-29 Thread Ivan Calandra
Hi, I've never worked with 3d arrays so I'm not sure what to do. Have you tried write.csv()? The function write.xls() from package xlsReadWrite can be really useful too, as well as RODBC which allow appending new spreadsheets to an existing Excel file (works on Windows). Without more on your

Re: [R] about data export

2010-03-29 Thread Mark Knecht
?WriteXLS On Mon, Mar 29, 2010 at 6:29 AM, meghana kulkarni wrote: > Hello all, > This is Meghana. > > Well, I have some analysis output in 3 dimensional array form. > for example: > > , , type1 > >      A B C D >      1 2 3  4 >      1 2 3 4 > >  , , type2 > > etc. > > This array is very big. an