Re: [R] storing multidimensional arrays - save and load -

2013-08-15 Thread Bretschneider (R)
Dear Witold E Wolski, Re: > I am have a procedure which generates multidimensional arrays. > > To compute them is expensive so I want to store them in order to be > able to analyse them later. > > I am using at the moment > > problem is that the array is always assigned to a variable ma (the >

Re: [R] storing multidimensional arrays - save and load -

2013-08-14 Thread Ista Zahn
You can use saveRDS() and readRDS() instead of save/load. Unlike load readRDS just returns the value, allowing you to assign it to whatever name you want. Best, Ista On Wed, Aug 14, 2013 at 5:52 AM, Witold E Wolski wrote: > I am have a procedure which generates multidimensional arrays. > > To

[R] storing multidimensional arrays - save and load -

2013-08-14 Thread Witold E Wolski
I am have a procedure which generates multidimensional arrays. To compute them is expensive so I want to store them in order to be able to analyse them later. I am using at the moment problem is that the array is always assigned to a variable ma (the computation is in a loop). Than I generate a