search for: ad133a86

Displaying 1 result from an estimated 1 matches for "ad133a86".

2004 Aug 09
1
Follow-up Q Re: displaying computation outputs inside "for" loops
...08 +0200 From: "Dimitris Rizopoulos" <dimitris.rizopoulos at med.kuleuven.ac.be> Subject: Re: [R] displaying computation outputs inside "for" loops To: "Dewez Thomas" <t.dewez at brgm.fr> Cc: r-help at stat.math.ethz.ch Message-ID: <009101c47df2$e7e13430$ad133a86 at www.domain> Content-Type: text/plain; charset="iso-8859-1" Hi Thomas, is this what you would like to get, for(i in 1:3){ x <- rnorm(5) cat("the values of `x' are:", format(x), "\n") cat("computation", i, "finished\n\n") } f...