Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to try to fill in my missing values in a data set im currently working on. The data has 13300 observations and 9 features. I want to run a random forest so I tried using rfimpute to fill in these missing values. I get the following error: cannot allocate vector of size 678.4 Mb. I'm running this on a windows machine with 8 gbs of ram. This is the call that I do:

datos.imputados <- rfImpute(vo~P4.Plan.Esp+P11.Comprador+SegmentoDisipado+PersMcKinsey+Kids+IndefDulceSal+lugarcons+Compania,data=datos,ntrees=300,iter=6)

¿What is going on here? 670 mbs doesnt sound like a lot...

share|improve this question
Your RAM is full and there is not enough RAM left for an additional 678.4 MB vector. – Roland Nov 5 '12 at 16:19
How could I make the call less memory demanding, The dataset isn't even that big... dont you think? – JEquihua Nov 5 '12 at 18:00

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.