Dear all,
the script below
<hansl
foreign language=R
x<-rnorm(20)
plot(x)
end foreign
hansl>
works OK on XP
but on Ubuntu everything I could get
is blinking and disappearing plot with
this:
<hansl
foreign language=R
x<-rnorm(20)
library(graphics)
library(grDevices)
X11()
plot(x)
end foreign
hansl>
The question is how to make the plot
to stay on?
Oleh