[R] Issue with message()

2012-04-22 Thread Axel Urbiz
Dear List, I built a package under both Mac and Win 7 (both on R 2.12.0) . One of the functions in the package is set up to print a status message using the code below: if (verbose) if ((i %% 10) == 0 i ntree) message( , i, out of, ntree, trees so far...) This works perfectly on the

Re: [R] Issue with message()

2012-04-22 Thread Rolf Turner
On 23/04/12 09:36, Axel Urbiz wrote: Dear List, I built a package under both Mac and Win 7 (both on R 2.12.0) . One of the functions in the package is set up to print a status message using the code below: if (verbose) if ((i %% 10) == 0 i ntree) message( , i, out of, ntree, trees

Re: [R] Issue with message()

2012-04-22 Thread Duncan Murdoch
On 12-04-22 5:36 PM, Axel Urbiz wrote: Dear List, I built a package under both Mac and Win 7 (both on R 2.12.0) . One of the functions in the package is set up to print a status message using the code below: if (verbose) if ((i %% 10) == 0 i ntree) message( , i, out of, ntree, trees