Hi,
have a look at ?try which leads to using a construct of the following
form:
myTtest <- try(t.test(...))
if (inherits(myTtest, "try-error"))
{
cat(myTtest)
myTtest <- NA
}
Christian
__
R-help@r-project.org mailing list
https://stat.ethz
?try
e.g.,
for(i in x) try(t.test(...))
On Feb 2, 2008 7:43 AM, My Coyne <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I place a t.test in a loop and would like to continue to process the loop
> even when t.test encounter error. How do I do that?For example, in one
> iteration, the data is complet
Hi,
I place a t.test in a loop and would like to continue to process the loop
even when t.test encounter error. How do I do that?For example, in one
iteration, the data is completely constant and t.test gives error, the
entire program terminates. I would like to write the information out to
3 matches
Mail list logo