Back
You can use the following functions to clear the console in RStudio:
cat("\f")
cat("\014")
Both of these functions send CTRL + L to the console which is the keyboard shortcut used to clear the console.
You may define the following function
clc <- function() cat(rep("\n", 50))
which you can then call as clc().
31k questions
32.8k answers
501 comments
693 users