Displaying 3 results from an estimated 3 matches for "1001384".
Did you mean:
100138
2005 Oct 20
1
Windows 2000 crash while using rbind (PR#8225)
...=20
year 2005 =20
month 10 =20
day 06 =20
svn rev 35749 =20
language R=20
One of the examples that has failed for me looks like
pop <- rbind(om.tp[,c(6,2,4,5,3)],eas[,c(2,1,3,4,5)])
> str(om.tp[,c(6,2,4,5,3)])
`data.frame': 1001384 obs. of 5 variables:
$ age5 : Factor w/ 18 levels "0 to 4","5 to 9",..: 1 1 1 1 1 2 2 2 2 2 =
...
$ sex : Factor w/ 2 levels "Females","Males": 1 1 1 1 1 1 1 1 1 1 ...
$ lga : Factor w/ 142 levels "Albany (C)","Armadale (C)",..: 21 2...
2008 Nov 14
0
[LLVMdev] bugs in CMake build
[I'm cc-ing the mailing list because there are some topics here of
general interest]
HyperQuantum <hyperquantum at gmail.com> writes:
>> CMAKE_SOURCE_DIR should be the same as LLVM_MAIN_SRC_DIR. If you know an
>> scenario where this is not true, please describe it.
>
> In my case it's not true. I have put LLVM in a subdirectory of my
> project
2006 May 22
1
win2k memory problem with merge()'ing repeatedly (long email)
...ot, a3,all=T)
atot <- merge(atot, a4,all=T)
etc...
I normally start R with --vanilla.
What appears to happen is that atot doubles in size each iteration and
just falls over due to lack of memory at about i=17... even though the
total memory required for all of these individual a1...a63 is only
1001384 bytes (doing an object.size() on a1..a63)
at this point I've been trying to pin down this problem for two weeks
and I just gave up...
The following works fine as I'd expect with minimal memory usage...
for (i in 3:67) {
datelist <- as.Date(start.date)+0:(count-1)
#remove a coup...