Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

Here I described my general situation. How to calculate 95%CI between means in R?

share|improve this question
You may want to reiterate the details of your design on this question. Is your design repeated measures or between subjects? Are you going to assume normally distributed errors? – Jeromy Anglim Sep 26 '11 at 0:40
@Jeromy Anglim: thanks for your questions :)! Here I was answered that my design is one way RM ANOVA. And it is within-subject as far as I understand... And I want to calculate 95%CI instead of post hoc tests... – stan Sep 26 '11 at 3:11
...as here @John advised me to "report the standard confidence intervals of the effects in question". Jeromy, I have a counter-question: the term within (and/or between)-subject design is more general than, for instance, ANOVA or RM ANOVA and so on, isn't it? – stan Sep 26 '11 at 3:11
I guess I'm trying to set the question title and the text of this question to stand alone for future readers. Thus, I think the title of this question and the content should make it clear what kind of confidence interval you are interested in. The two most common confidence interval scenarios for comparing means are probably those for repeated measures t-test and independent groups t-test, hence my question. – Jeromy Anglim Sep 26 '11 at 3:31
@Jeromy: please suspend the question. I have to think about the modification... – stan Sep 26 '11 at 4:05
show 1 more comment

closed as not a real question by whuber Sep 26 '11 at 13:48

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

That depends on a bunch of things. One easy way to do it might be just to calculate t-tests for each one. Part of the output is the confidence interval of the effect.

t1 <- t.test( A, B, paired = TRUE )
t1$estimate # the effect in question
t1$conf.int # the confidence interval of the effect
share|improve this answer
thanks for the script :)! sorry, t-test after my RM ANOVA ? – stan Sep 26 '11 at 3:19

Not the answer you're looking for? Browse other questions tagged or ask your own question.