progressreport {spatstat}R Documentation

Print Progress Reports

Description

Prints Progress Reports during a loop or iterative calculation.

Usage

progressreport(i, n, every = max(1, ceiling(n/100)), nperline =
min(charsperline, every * ceiling(charsperline/(every + 3))),
charsperline = 60, style=spatstat.options("progress"))

Arguments

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.

style

Character string determining the style of display. See Details.

Details

This is a convenient function for reporting progress during an iterative sequence of calculations or a suite of simulations.

If style="txtbar" then txtProgressBar is used to represent progress as a bar made of text characters in the R interpreter window.

If style="tty", then progress reports are printed using cat. This only seems to work well under Linux.

Value

Null.

Author(s)

Adrian Baddeley Adrian.Baddeley@csiro.au http://www.maths.uwa.edu.au/~adrian/ and Rolf Turner r.turner@auckland.ac.nz

Examples

  for(i in 1:40) progressreport(i, 40)

[Package spatstat version 1.25-3 Index]