Hi,
I am running an R script from the command line by calling:
> R --vanilla < test.R
My terminal is part of the Xwin (Xterm) and there is a plot(1:10)
command in the test.R script.
This will not produce a grahic though. When I start R by calling R then
plotting from the R command in the sam
To: Pologruto, Thomas
Cc: r-help@r-project.org
Subject: Re: [R] Displaying Grahics to the X Window when calling R from
command line
The issue is that the X11() device is the default device only in
interactive use, and further than the event loop is only run in
interactive use.
You need to
1
, Thomas
Cc: r-help@r-project.org
Subject: RE: [R] Displaying Grahics to the X Window when calling R from
command line
On Wed, 16 Apr 2008, Pologruto, Thomas wrote:
> Thank you for your response. I tried searching the archives but did
> not know that it was called X11() device.
>
>
: Pologruto, Thomas
Cc: r-help@r-project.org
Subject: RE: [R] Displaying Grahics to the X Window when calling R from
command line
I've just tried the following in 2.6.2
auk% cat x11.R
X11()
interactive()
plot(1:10)
locator()
q()
explicitly launch a device. It seems to be responsive enoug
Hello,
I have tried a few variants of a solution from the previous posts, but
perhaps my syntax is wrong. I am using ts.plot(data_as_columns) and
would like the label the x axis using some labels (in my case minutes
after 9am).
Any ideas how to use the plot params and the Axis function to accomp
5 matches
Mail list logo