Skip to content
Prev 179145 / 398502 Next

clear screen?

You got it from my post here:
http://tolstoy.newcastle.edu.au/R/help/06/02/21556.html

Don't know why rcom's dependencies are a consideration
but RDCOMClient can also handle this:

cls <- function () {
	require(RDCOMClient)
	wsh <- COMCreate("Wscript.Shell")
	wsh$SendKeys("\f")
	invisible(wsh)
}
cls()



On Sun, May 3, 2009 at 6:50 PM, Charles Annis, P.E.
<Charles.Annis at statisticalengineering.com> wrote: