Possible Duplicate:
Function to Clear the Console in R
Is there a way to invoke the Clear Console (Ctrl+L) menu command programmatically?
EDIT
Sorry i forgot to clarify I use windows. Thank you
Is there a way to invoke the Clear Console (Ctrl+L) menu command programmatically? EDIT Sorry i forgot to clarify I use windows. Thank you |
||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
I use a function for doing that, and actually have put it in {R directory}\etc\Rprofile.site so that it will always be available for use.
To clear the console give
P.S. The function doesn't work the first time it's called and that's why I invoke the function immediately after declaring it in Rprofile.site. As I recall, you may be asked to install some program, in order for this to work. |
|||
|
|
|
I might be missing the point dramatically, but is simple |
|||
|
|
|
Create this function:
Then call it:
Works with:
|
||||
|
|