> fish = c(8,12,10,14,2,0,0) > regular = c(-6,0,1,2,-3,-4,2)
t.test
to carry out a t test
and to compute a confidence interval.> t.test(fish,regular)
> t.test(fish,regular,var.equal=T)
> t.test(fish,regular,conf.level=0.99)
> t.test(fish,regular,paired=T)
?t.test