clear {cursr} | R Documentation |
Clear Text
Description
Clear text from the terminal. Passing values "start"
or "end"
allow the user to clear specific portions of the screen relative to the cursor.
Usage
clear(x = c("screen", "end", "start"), ...)
Arguments
x |
character describing console location to clear. The default, |
... |
objects passed to/from methods |
Value
NULL
Examples
clear()
cat(paste(LETTERS[1:10], collapse="\n"))
clear("start")
clear("end")
[Package cursr version 0.1.0 Index]