Displaying 4 results from an estimated 4 matches for "3dsample".
2008 Aug 17
1
Allocated Memory Warnings in Vista 32 bit with 4 GB (PR#12557)
...or cases) as the name of the =
file. Thus, data10000 has 10,000 observations, and data300000 has 300,000 =
observations.
Here is my history which shows the problem, and inconsistency in memory all=
ocation reporting:
> data=3Dread.csv("data10000.csv",header=3DFALSE)
> partial=3Dsample(data,5000,T)
> data=3Dread.csv("data100000.csv",header=3DFALSE)
Error in file(file, "r") : cannot open the connection
In addition: Warning message:
In file(file, "r") :
cannot open file 'data100000.csv': No such file or directory
> data=3Dre...
2005 Oct 20
1
Windows 2000 crash while using rbind (PR#8225)
Windows 2000 reports that "Rgui.exe has generated errors and will be =
closed by Windows. You will need to restart the program." when using =
rbind.=20
df1 <- data.frame(cbind(x=3D1, y=3D1:1000), fac=3Dsample(LETTERS[1:3], =
1000, repl=3DTRUE))
df2 <- data.frame(cbind(x=3D1, y=3D1:10), fac=3Dsample(LETTERS[4:6], =
10, repl=3DTRUE))
df3 <- data.frame(cbind(x=3D1, y=3D1:1000000), =
fac=3Dsample(LETTERS[1:3], 1000000, repl=3DTRUE))
df4 <- rbind(df1,df2)
df5 <- rbind(df2,df3)
=20
=20
Since t...
2008 Aug 18
0
Allocated Memory Warnings in Vista 32 bit with 4 GB (PR#12560)
...file. Thus, data10000 has 10,000 observations, and data300000 has 300,000 =
> observations.
>
> Here is my history which shows the problem, and inconsistency in memory all=
> ocation reporting:
>
> > data=3Dread.csv("data10000.csv",header=3DFALSE)
> > partial=3Dsample(data,5000,T)
> > data=3Dread.csv("data100000.csv",header=3DFALSE)
> Error in file(file, "r") : cannot open the connection
> In addition: Warning message:
> In file(file, "r") :
> cannot open file 'data100000.csv': No such file or direct...
2009 Dec 15
1
Antwort: Re: R on Windows crashes when using certain (PR#14143)
...ncan
>=20
> >=20
> > I can reproduce the bug on two separate systems running Windows XP,=20
and with
> > both R 2.10.0 and the latest R.2.10.1 RC.
> >=20
> > The following commands trigger the crash for me:
> >=20
> > n=3D1e5
> > k=3D10
> > x=3Dsample(k,n,replace=3DTRUE)
> > y=3Dsample(k,n,replace=3DTRUE)
> > xy=3Dpaste(x,y,sep=3D" =D7 ")
> > z=3Dsample(n)
> > d=3Ddata.frame(xy,z)
> >=20
> > The last step takes very long time, and R crashes before it's=20
finished. Note
> > that if I reduce...