Hi there!

I'd like to make many tests and plots, for each variables.

i.E.

i <- 1
repeat {
   print (t.test(e[i], f[i]))
   i <- i + 1
   if (i == 21) break
}

but the output is:
        Welch Two Sample t-test

data:  e[i] and f[i] 
...

so I don't know which data was calculated.

Is there a way to tell the t.test or I'll make the same with plotmeans
(from the gplots library) but I'd like to have it like

t.text(e$angststoer, f$angststoer)

so I know what was calculated or plotted...

Any ideas?

Thanks,
Martin


-- 
Ihr Partner für Webdesign, Webapplikationen und Webspace.
http://www.roomandspace.com/
Martin Kaffanke +43 650 4514224

Attachment: signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to