search for: conx

Displaying 5 results from an estimated 5 matches for "conx".

Did you mean: cons
2009 Jul 18
1
[R] Problem With Repeated Use Of Load/Save/Close Commands (PR#13841)
...g the vanilla load of R, with nothing added after booting up. > The problem also occurs on my Vista machine as well. > > The program below will induce the problem. > ------------------------------------------------------------ > junk = 1 > PathA = tempdir() > conX = paste(PathA,"junk",sep="\\") > outJunk = file(conX, open="wb") > save(junk, file=outJunk) > close(outJunk) > for(i in 1:4000){ > outMIA = file(conX, open="rb") > load(file=outMIA) > close(outMIA) &g...
2009 Jul 17
1
Problem With Repeated Use Of Load/Save/Close Commands
...asets methods base I'm using the vanilla load of R, with nothing added after booting up. The problem also occurs on my Vista machine as well. The program below will induce the problem. ------------------------------------------------------------ junk = 1 PathA = tempdir() conX = paste(PathA,"junk",sep="\\") outJunk = file(conX, open="wb") save(junk, file=outJunk) close(outJunk) for(i in 1:4000){ outMIA = file(conX, open="rb") load(file=outMIA) close(outMIA) closeAllConnections() u...
2009 Jul 18
0
[R] Problem With Repeated Use Of Load/Save/Close Commands (PR#13842)
...th nothing added after booting up. >> The problem also occurs on my Vista machine as well. >> >> The program below will induce the problem. >> ------------------------------------------------------------ >> junk = 1 >> PathA = tempdir() >> conX = paste(PathA,"junk",sep="\\") >> outJunk = file(conX, open="wb") >> save(junk, file=outJunk) >> close(outJunk) >> for(i in 1:4000){ >> outMIA = file(conX, open="rb") >> load(file=outMIA) >...
2009 Aug 06
2
Repeatable, But Time Varying R GUI Crash
...vices utils datasets methods base (The problem occurs on my Vista machine as well.) ******************************************* # This script induces the R GUI to crash. problem2 = function(){ junk = mat.or.vec(8,40) junk[] = 1 mjunk = mat.or.vec(8,40) mjunk[] = -1 PathA = tempdir() conX = paste(PathA,"junkx",sep="\\") conY = paste(PathA,"junky",sep="\\") outJunk = file(conX, open="wb") save(junk, file=outJunk) close(outJunk) outJunkY = file(conY, open="wb") save(mjunk, file=outJunkY) close(outJunkY) sign = 1 for(...
2009 Aug 06
1
[R] Repeatable, But Time Varying R GUI Crash (PR#13880)
...well.) > ******************************************* > > # This script induces the R GUI to crash. > > problem2 = function(){ > > junk = mat.or.vec(8,40) > > junk[] = 1 > > mjunk = mat.or.vec(8,40) > > mjunk[] = -1 > > PathA = tempdir() > > conX = paste(PathA,"junkx",sep="\\") > > conY = paste(PathA,"junky",sep="\\") > > outJunk = file(conX, open="wb") > > save(junk, file=outJunk) > > close(outJunk) > > outJunkY = file(conY, open="wb") > >...