Dear all,
I would like to expand my data, I have 7500 individuals and for each individual, I would like observation on day, month, and year since the person was born until December 2001. Let s say the average year is 4 years. I would like to have 7500*365*4=10950000 observations.
When I run the code, I have this from Stata,
I use the following codes but it does not work,
My question is how to add my memory so I can have my 10950000 observations. I have Stata 14
Thank you very much,
Eric
I would like to expand my data, I have 7500 individuals and for each individual, I would like observation on day, month, and year since the person was born until December 2001. Let s say the average year is 4 years. I would like to have 7500*365*4=10950000 observations.
When I run the code, I have this from Stata,
Code:
op. sys. refuses to provide memory Stata's data-storage memory manager has already allocated 12480m bytes and it just attempted to allocate another 32m bytes. The operating system said no. Perhaps you are running another memory-consuming task and the command will work later when the task completes. Perhaps you are on a multiuser system that is especially busy and the command will work later when activity quiets down. Perhaps a system administrator has put a limit on what you can allocate; see help memory. Or perhaps that's all the memory your computer can allocate to Stata.
Code:
set max_memory 10g, permanently
Thank you very much,
Eric
Comment