Displaying 1 result from an estimated 1 matches for "tnor".
Did you mean:
nor
2005 Jul 22
2
memory cleaning
...fter some computing I have used :
> memory.size()/1048576.0
[1] 103.7730
and I make my export :
> write.table(cox,"d:/tablefinal2.txt",row.names=F,sep=';')
> memory.size()/1048576.0
[1] 241.9730
I'm surprised so I try removing some objects :
> rm (trait,tany,tnor,toth,suivauxdany,dnor,doth,mod1,
mod2,mod3,lok1,lok2,lok3,aux,risque,risk)
and check memory space :
> memory.size()/1048576.0
[1] 242.1095
First, I don't understand why when removing objects the memory used increase ?
Next, why the memory used double when I make an export ?
I look forward t...