Test Significance Between Estimates- survival between areas

** solution to this issue posted by ctlamb on second page**
I have computed measures of apparent survival, recruitment and population growth for three areas, using three difference data sets. I would like to compare whether the estimates are significantly different from one another.
Initially I took the mean, and SE (which is = to the SD for a parameter estimate viewtopic.php?f=1&t=2209&p=6830&hilit=standard+deviation) and pulled data from a normal distribution and compared these data using ANOVA and a post hoc Turkey HSD.
However this approach seems sensitive to how many samples I draw, (i,e at 1,000 samples the HWY FH comparison is insignificant, but at 10,000 it is significant)
Any help?
I have computed measures of apparent survival, recruitment and population growth for three areas, using three difference data sets. I would like to compare whether the estimates are significantly different from one another.
Initially I took the mean, and SE (which is = to the SD for a parameter estimate viewtopic.php?f=1&t=2209&p=6830&hilit=standard+deviation) and pulled data from a normal distribution and compared these data using ANOVA and a post hoc Turkey HSD.
However this approach seems sensitive to how many samples I draw, (i,e at 1,000 samples the HWY FH comparison is insignificant, but at 10,000 it is significant)
Any help?
- Code: Select all
###SURVIVAL
set.seed(1)
FH<-rnorm(1000,mean=0.78,sd=0.14)
HWY<-rnorm(1000,mean=0.765,sd=0.19)
SR<-rnorm(1000,mean=0.78,sd=0.17)
t.test(FH,HWY,alternative="two.sided")
t.test(SR,HWY,alternative="two.sided")
t.test(SR,FH,alternative="two.sided")
Surv<-
rbind(data.frame(x=FH,Strata="FH"),
data.frame(x=HWY,Strata="HWY"),
data.frame(x=SR,Strata="SR"))
ANOVA_Surv<-aov(x ~ Strata, Surv)
summary(ANOVA_Surv)
TukeyHSD(ANOVA_Surv)