| Display$progressMsg {IdMappingAnalysis} | R Documentation |
Display a message accompanied by the percentage of completion.
## Static method (use this): ## Display$progressMsg(msg, i, total, ...) ## Don't use the below: ## S3 method for class 'Display' progressMsg(static, msg, i, total, ...)
msg |
Message to be dysplayed. |
i |
Counter of the progress. |
total |
The maximum value for a counter corresponding to 100 percent completion. |
... |
Not used |
Alex Lisovich, Roger Day
For more information see Display.
## Not run:
for (i in 1:100){
Display$progressMsg("processing: ",i,100);
# do something ...
}
## End(Not run)