progressreport {spatstat} | R Documentation |
Prints Progress Reports during a loop or iterative calculation.
progressreport(i, n, every = max(1, ceiling(n/100)), nperline = min(charsperline, every * ceiling(charsperline/(every + 3))), charsperline = 60)
i |
Integer. The current iteration number (from 1 to n ).
|
n |
Integer. The (maximum) number of iterations to be computed. |
every |
Optional integer. The number of iterations between successive reports. |
nperline |
Optional integer. The maximum number of reports to be printed per line of output. |
charsperline |
Optional integer. The number of characters in a line of output. |
This is a convenient function for reporting progress during an iterative sequence of calculations or a suite of simulations.
Null.
Adrian Baddeley adrian@maths.uwa.edu.au http://www.maths.uwa.edu.au/~adrian/ and Rolf Turner rolf@math.unb.ca http://www.math.unb.ca/~rolf
for(i in 1:40) progressreport(i, 40)