[R] load ff object in a different computer

2013-05-26 Thread Djordje Bajic
Hi all, I am having trouble loading a ff object previously saved in a different computer. I have both files .ffData and .RData, and the first of them is 13Mb large from which I know the data is therein. But when I try to ffload it, checkdir error: cannot create /home/_myUser_

Re: [R] load ff object in a different computer

2013-05-26 Thread Milan Bouchet-Valat
Le dimanche 26 mai 2013 à 13:53 +0200, Djordje Bajic a écrit : Hi all, I am having trouble loading a ff object previously saved in a different computer. I have both files .ffData and .RData, and the first of them is 13Mb large from which I know the data is therein. But when I try to ffload

Re: [R] load ff object in a different computer

2013-05-26 Thread Djordje Bajic
i *SOLVED* Thanks Milan, I have receivd some feedback externally to the list and managed to solve the issue. I saved the document as follows: x.Arr - ff(NA, dim=rep(ngen,3), vmode=double) ffsave (x.Arr, file=x.Arr) finalizer(x.Arr) - delete The problem was related to the rootpath argument. As