Report backend progress
Prints a show status string to the console without emitting a newline.
imxReportProgress(info, eraseLen)
info |
the character string to print |
eraseLen |
the number of characters to erase |
library(OpenMx) previousLen <<- 0 easyReportProcess <- function(msg) { imxReportProgress(msg, previousLen) previousLen <<- nchar(msg) } demo <- function() { easyReportProcess("abc123") Sys.sleep(1) easyReportProcess("this is much longer") Sys.sleep(1) easyReportProcess("this is short") Sys.sleep(1) easyReportProcess("almost done") Sys.sleep(1) easyReportProcess("") cat("DONE!", fill=TRUE) } demo()
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.