Great! It worked! Thank you so much! Now since it worked greatly, how can I put this function into my own library or package, so later on I can call this function from my other scripts?
Thanks a lot! On 3/10/06, jim holtman <[EMAIL PROTECTED]> wrote: > > The archives had the following in it: > > [R] how to clear screen in R-console? > > - *This message*: [ Message > body<http://finzi.psych.upenn.edu/R/Rhelp02a/archive/70722.html#start>] [ More > > options<http://finzi.psych.upenn.edu/R/Rhelp02a/archive/70722.html#options2>] > - *Related messages*: [ Next > message<http://finzi.psych.upenn.edu/R/Rhelp02a/archive/70723.html>] [ > Previous > message <http://finzi.psych.upenn.edu/R/Rhelp02a/archive/70721.html>] [ In > reply to<http://finzi.psych.upenn.edu/R/Rhelp02a/archive/70708.html>] [ > Next > in thread<http://finzi.psych.upenn.edu/R/Rhelp02a/archive/70800.html>] [ > > Replies<http://finzi.psych.upenn.edu/R/Rhelp02a/archive/70722.html#replies>] > > *From*: Gabor Grothendieck > <ggrothendieck<ggrothendieck?Subject=Re:%20[R]%20how%20to%20clear%20screen%20in%20R-console?>> > > *Date*: Fri, 17 Feb 2006 12:36:51 -0500 > > Here is a version that uses rcom instead of RDCOMClient. > This has the advantage that rcom is on CRAN. > > cls <- function() { > require(rcom) > wsh <- comCreateObject("Wscript.Shell") > comInvoke(wsh, "SendKeys", "\014") > invisible(wsh) > } > cls() # test > > On 2/17/06, Gabor Grothendieck <ggrothendieck at gmail.com> wrote: > *> Here is a translation of Norm Olsen's vbscript code into pure R. * > *> This is intended for use with the Windows Rgui interface. * > > > > > On 3/10/06, Michael <[EMAIL PROTECTED]> wrote: > > > something like "sprintf" in C? > > so I can do: > > print(sprintf("the correct result is %3.4f\n", myresult)); > > ------- > > Also, I am desperately looking for a "clear console screen" function in > R... > > thanks a lot! > > [[alternative HTML version deleted]] > > ______________________________________________ > [email protected] mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! > http://www.R-project.org/posting-guide.html<http://www.r-project.org/posting-guide.html> > > > > > -- > Jim Holtman > Cincinnati, OH > +1 513 646 9390 (Cell) > +1 513 247 0281 (Home) > > What the problem you are trying to solve? > [[alternative HTML version deleted]] ______________________________________________ [email protected] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
