Created
May 5, 2019 16:35
-
-
Save jhrcook/b111ab0e8507ef48b35b96866870d203 to your computer and use it in GitHub Desktop.
Print to the start of the same line in R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (letter in letters) { | |
cat(letter) | |
# do some work | |
Sys.sleep(0.1) | |
cat("\33[2K\r") | |
} | |
cat("done\n") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment