Re: [R] how to make R plot under Linux

2014-05-15 Thread Patrick Connolly
"<815551...@qq.com>; "r-h...@stat.math.ethz.ch"; |> |> Subject: Re: [R] how to make R plot under Linux |> |> |> |> Yes, install R so that X11 is enabled, then do |> |> x11() |> hist( c(1:10) ) |> |> and you should see your histogram.

Re: [R] how to make R plot under Linux

2014-05-14 Thread Rolf Turner
On 15/05/14 17:18, Jeff Newmiller wrote: This is not an Ubuntu tech support list. It is possible to install the X11 client support even on headless servers, which is one of the things R on the server needs to send graphics commands to your computer. However, if your sysadmin won't do it then it

Re: [R] how to make R plot under Linux

2014-05-14 Thread Jeff Newmiller
- Original -- > From: "MacQueen, Don";; > Date: May 15, 2014 >To: "����"<815551...@qq.com>; >"r-h...@stat.math.ethz.ch"; > > Subject: Re: [R] how to make R plot under Linux > >

Re: [R] how to make R plot under Linux

2014-05-14 Thread ????
.ethz.ch"; Subject: Re: [R] how to make R plot under Linux Yes, install R so that X11 is enabled, then do x11() hist( c(1:10) ) and you should see your histogram. -- Don MacQueen Lawrence Livermore National Laboratory 7000 East Ave., L-627 Livermore, CA 94550 925-423-1062

Re: [R] how to make R plot under Linux

2014-05-14 Thread MacQueen, Don
Yes, install R so that X11 is enabled, then do x11() hist( c(1:10) ) and you should see your histogram. -- Don MacQueen Lawrence Livermore National Laboratory 7000 East Ave., L-627 Livermore, CA 94550 925-423-1062 On 5/14/14 1:26 AM, "Owen" <815551...@qq.com> wrote: >Vojtěch Zeisek open

Re: [R] how to make R plot under Linux

2014-05-14 Thread Owen
Vojtěch Zeisek opensuse.org> writes: > > On Linux You can use Rkward http://rkward.sourceforge.net/ - very nice and > good graphical user interface for R. > > Dne Pá 19. února 2010 19:39:53 xinwei stat.psu.edu napsal(a): > > Hi, I am using R in Linux environment. How can i make plot in Linux

Re: [R] how to make R plot under Linux

2010-02-23 Thread Patrick Connolly
On Mon, 22-Feb-2010 at 02:45PM -0500, Cedrick W. Johnson wrote: |> |> I've managed to successfully use R (based on a remote Linux server) and have th |> e graphics piped back to me via SSH on a windows machine.. |> |> Take a look at XMing on the windows side, along with PuTTY. Ask your IT guys

Re: [R] how to make R plot under Linux

2010-02-23 Thread xin wei
thank you all your guys. You all show a great deal of tolerance on my ignorance. I installed reflection X on windows and problems solved! BTW, I am not with school anymore unfortunately and none of my local colleagues use either R or Unix.. -- View this message in context: http://n4.nabble

Re: [R] how to make R plot under Linux

2010-02-22 Thread Zhuanshi He
HI, Please try to setup environment variable DISPLAY on your remote machine. ex, csh: setenv DISPLAY localhostIPAddress:20.0 or bash export DISPLAY=localhostIPAddress:20.0 where localhostIPAddress is your IP address of your current working machine (local machine) Usually, I just use localhost

Re: [R] how to make R plot under Linux

2010-02-22 Thread David Scott
Saeed Abu Nimeh wrote: Try to install xming in your windows box http://www.straightrunning.com/XmingNotes/. Make sure to run xming before plotting. Saeed On Mon, Feb 22, 2010 at 12:46 PM, xin wei wrote: hi, Guys: thank you so much for all the suggestion. Now I seem to be able to set up x11 for

Re: [R] how to make R plot under Linux

2010-02-22 Thread Saeed Abu Nimeh
Try to install xming in your windows box http://www.straightrunning.com/XmingNotes/. Make sure to run xming before plotting. Saeed On Mon, Feb 22, 2010 at 12:46 PM, xin wei wrote: > > hi, Guys: > thank you so much for all the suggestion. Now I seem to be able to set up > x11 forwarding in PUTTY.

Re: [R] how to make R plot under Linux

2010-02-22 Thread Don MacQueen
The classic test for a properly set up X11 is to issue the command xclock at the prompt (on the linux box). (this assumes the linux box has xclock installed, but that is highly likely) If it works, the X11 forwarding is set up. If not, then, evidently not, but in the latter case at least yo

Re: [R] how to make R plot under Linux

2010-02-22 Thread Duncan Murdoch
On 22/02/2010 3:46 PM, xin wei wrote: hi, Guys: thank you so much for all the suggestion. Now I seem to be able to set up x11 forwarding in PUTTY. however, I still could not get plot and I get the following error msg: Error in function (display = "", width, height, pointsize, gamma, bg, : X1

Re: [R] how to make R plot under Linux

2010-02-22 Thread xin wei
hi, Guys: thank you so much for all the suggestion. Now I seem to be able to set up x11 forwarding in PUTTY. however, I still could not get plot and I get the following error msg: Error in function (display = "", width, height, pointsize, gamma, bg, : X11 I/O error while opening X11 connectio

Re: [R] how to make R plot under Linux

2010-02-22 Thread Cedrick W. Johnson
I've managed to successfully use R (based on a remote Linux server) and have th e graphics piped back to me via SSH on a windows machine.. Take a look at XMing on the windows side, along with PuTTY. On 2/22/2010 2:41 PM, Vojtěch Zeisek wrote: Dne Po 22. února 2010 19:33:45 Kevin E. Thorpe n

Re: [R] how to make R plot under Linux

2010-02-22 Thread Vojtěch Zeisek
Dne Po 22. února 2010 19:33:45 Kevin E. Thorpe napsal(a): > K. Elo wrote: > > Hi! > > > > 22.02.2010 19:53, xin wei wrote: > >> hi, Kevin and K.Elo: > >> thank you for the suggestion. Can you be more specific on these? (like > >> how exactly get into x-switch or man ssh). I am totally ignorant abou

Re: [R] how to make R plot under Linux

2010-02-22 Thread Zhuanshi He
Hi, You just need to install X11 windows software on windows, such as xming, and start xming before ssh -X use...@remotehost Hope this helps. On 2/22/10, xin wei wrote: > > > thank you for reply. I just type: hist(x) from SSH terminal, expecting a > histogram to pop up like what i got under

Re: [R] how to make R plot under Linux

2010-02-22 Thread Kevin E. Thorpe
K. Elo wrote: Hi! 22.02.2010 19:53, xin wei wrote: hi, Kevin and K.Elo: thank you for the suggestion. Can you be more specific on these? (like how exactly get into x-switch or man ssh). I am totally ignorant about linux and SSH:( Memory limitation forces me to switch from windows to Lin

Re: [R] how to make R plot under Linux

2010-02-22 Thread Vojtěch Zeisek
Dne Po 22. února 2010 18:53:55 xin wei napsal(a): > hi, Kevin and K.Elo: > thank you for the suggestion. Can you be more specific on these? (like how > exactly get into x-switch or man ssh). I am totally ignorant about linux Hello, in Linux You can plot as in Windows, for example using hist(x). Bu

Re: [R] how to make R plot under Linux

2010-02-22 Thread K. Elo
Hi! 22.02.2010 19:53, xin wei wrote: > > hi, Kevin and K.Elo: > thank you for the suggestion. Can you be more specific on these? (like how > exactly get into x-switch or man ssh). I am totally ignorant about linux and > SSH:( Memory limitation forces me to switch from windows to Linux > c

Re: [R] how to make R plot under Linux

2010-02-22 Thread xin wei
hi, Kevin and K.Elo: thank you for the suggestion. Can you be more specific on these? (like how exactly get into x-switch or man ssh). I am totally ignorant about linux and SSH:( Memory limitation forces me to switch from windows to Linux cluster. Xin -- View this message in context:

Re: [R] how to make R plot under Linux

2010-02-22 Thread Kevin E. Thorpe
xin wei wrote: thank you for reply. I just type: hist(x) from SSH terminal, expecting a histogram to pop up like what i got under windows.instead I got the following error msg: Error in X11(d$display, d$width, d$height, d$pointsize, d$gamma, d$colortype, : unable to start device X11cairo

Re: [R] how to make R plot under Linux

2010-02-22 Thread K. Elo
Hi! 22.02.2010 17:45, xin wei wrote: > > thank you for reply. I just type: hist(x) from SSH terminal, expecting a > histogram to pop up like what i got under windows.instead I got the > following error msg: > > Error in X11(d$display, d$width, d$height, d$pointsize, d$gamma, > d$colortype,

Re: [R] how to make R plot under Linux

2010-02-22 Thread xin wei
thank you for reply. I just type: hist(x) from SSH terminal, expecting a histogram to pop up like what i got under windows.instead I got the following error msg: Error in X11(d$display, d$width, d$height, d$pointsize, d$gamma, d$colortype, : unable to start device X11cairo In addition: Wa

Re: [R] how to make R plot under Linux

2010-02-19 Thread Vojtěch Zeisek
On Linux You can use Rkward http://rkward.sourceforge.net/ - very nice and good graphical user interface for R. Dne Pá 19. února 2010 19:39:53 xin...@stat.psu.edu napsal(a): > Hi, I am using R in Linux environment. How can i make plot in Linux just > like in windows? > > thanks > >

Re: [R] how to make R plot under Linux

2010-02-19 Thread Ista Zahn
On 02/19/10 xin...@stat.psu.edu wrote: > Hi, I am using R in Linux environment. How can i make plot in Linux just > like in windows? There shouldn't be much difference, but we're going to need a lot more information. What version of linux, what version of R, what exactly is the problem you are h

[R] how to make R plot under Linux

2010-02-19 Thread xinwei
Hi, I am using R in Linux environment. How can i make plot in Linux just like in windows? thanks __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.ht