Hi,

depends on what type of terminal you are running.  For example, if you
run R in a VT100 terminal, you can try

cat("The following VT100 escape sequence will clear the screen on a
VT100 terminal\n")
cat("\033[2J")  # <ESC>[2J  == Clear Screen
cat("If the screen was cleared you should only see this sentence.\n")

i.e.

vt100ClearScreen <- function(...) cat("\033[2J")

Some links:
http://www.fh-jena.de/~gmueller/Kurs_halle/esc_vt100.html
http://en.wikipedia.org/wiki/VT100

Note, this is not guaranteed to work everywhere.  To the best of my
knowledge, you will not be able to do anything like this in Rgui on
Windows.

Cheers

Henrik


On 2/16/06, Michael <[EMAIL PROTECTED]> wrote:
> Any funcation that is callable from my program, instead of pressing keys?
>
> Thanks a lot!
>
>
> On 2/16/06, Christian Schulz <[EMAIL PROTECTED]> wrote:
> >
> > ctrl - e & l
> >
> > >HI all,
> > >
> > >How to clear the screen in R-console?
> > >
> > >Thanks a [EMAIL PROTECTED]
> > >
> > >       [[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
> > >
> > >
> > >
> >
> >
> >
>
>         [[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
>
>


--
Henrik Bengtsson
Mobile: +46 708 909208 (+1h UTC)

______________________________________________
[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

Reply via email to