it means that you do not have 240 (or 120) mb of free contigious space in memory.
you can remove other objects in memory by setting them to null
somethingbigyoudontneed <- NULL
R works entirely in memory so try to be as prudent with memory as you can.
oh you can also prompt the garbagecollector by calling gc()