imxReportProgress | R Documentation |
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()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.