Re: [R] Re-execute previous command

2010-02-10 Thread mnstn
Anita and Greg, Thank you for the useful information. -- View this message in context: http://n4.nabble.com/Re-execute-previous-command-tp1474629p1475397.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing lis

Re: [R] Re-execute previous command

2010-02-09 Thread Greg Snow
.org [mailto:r-help-boun...@r- > project.org] On Behalf Of mnstn > Sent: Tuesday, February 09, 2010 9:21 AM > To: r-help@r-project.org > Subject: [R] Re-execute previous command > > > Hello All, > In bash, to re-execute a command, say, 'gnuplot plot.gnu', one can

Re: [R] Re-execute previous command

2010-02-09 Thread akea013
On Feb 10, 5:21 am, mnstn wrote: > Hello All, > In bash, to re-execute a command, say,  'gnuplot plot.gnu', one can type > !gnu. Is there a similar feature in the R console? For example: > plot(g1$mean,g2$mean) > . > . > . > Lines, many lines of commands > ->Here I want to repeat the previous plo

Re: [R] Re-execute previous command

2010-02-09 Thread mnstn
Thanks David, I guess I have to settle with the upper-arrow thing I have been doing all along. My figures do not return any value so ggplot, lattice are out. -- View this message in context: http://n4.nabble.com/Re-execute-previous-command-tp1474629p1474813.html Sent from the R help mailing list

Re: [R] Re-execute previous command

2010-02-09 Thread David Winsemius
On Feb 9, 2010, at 12:13 PM, David Winsemius wrote: On Feb 9, 2010, at 11:21 AM, mnstn wrote: Hello All, In bash, to re-execute a command, say, 'gnuplot plot.gnu', one can type !gnu. Is there a similar feature in the R console? For example: plot(g1$mean,g2$mean) In most system typeing

Re: [R] Re-execute previous command

2010-02-09 Thread David Winsemius
On Feb 9, 2010, at 11:21 AM, mnstn wrote: Hello All, In bash, to re-execute a command, say, 'gnuplot plot.gnu', one can type !gnu. Is there a similar feature in the R console? For example: plot(g1$mean,g2$mean) In most system typeing will prompt the console to echo the last command (a

[R] Re-execute previous command

2010-02-09 Thread mnstn
Hello All, In bash, to re-execute a command, say, 'gnuplot plot.gnu', one can type !gnu. Is there a similar feature in the R console? For example: plot(g1$mean,g2$mean) . . . Lines, many lines of commands ->Here I want to repeat the previous plot command. !plot and plot(+TAB) do not work. This q