Displaying 3 results from an estimated 3 matches for "junkx".
Did you mean:
junk
2000 Aug 04
1
Reading blank lines
I'm writing a data.restore function like the one in S-PLUS. One
problem: scan() deletes any blank lines when it reads with
what=list(''). Is there a way to tell it to convert a blank line to a
0 length string element?
Duncan Murdoch
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read
2009 Aug 06
2
Repeatable, But Time Varying R GUI Crash
...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(i in 1:4000){
for(ii in 1...
2009 Aug 06
1
[R] Repeatable, But Time Varying R GUI Crash (PR#13880)
...******************************
>
> # 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...