----------------------------------------
> From: bruce...@usc.edu
> To: r-help@r-project.org
> Date: Tue, 7 Dec 2010 09:27:21 -0800
> Subject: [R] R problem
>
> I'm using R version 2.12.0
>
> I'm trying to open a stata file (.dta); but I keep getting the message:
>
> Error in read.dta("c:/p4subset_biology.dta") :
> Calloc could not allocate (-603966867 of 4) memory

how big is the file? Negative numbers related to memory allocs
often mean too big- the signed int size thing overflows and becomes
negative. Boundaries are often at a few Gigs, the sign bit on a 32
bit int is bit 31.




>
> What does this mean?
>
> The file should contain lots of physiological data.
>
> Thank you for your help.
>
> -Bruce
>
> ______________________________________________
> R-help@r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
                                          
______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to