Displaying 2 results from an estimated 2 matches for "mjunk".
Did you mean:
junk
2009 Aug 06
2
Repeatable, But Time Varying R GUI Crash
....1252
attached base packages:
[1] stats graphics grDevices 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")
s...
2009 Aug 06
1
[R] Repeatable, But Time Varying R GUI Crash (PR#13880)
...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)
&g...