Unanswered Questions
1,995 questions with no upvoted or accepted answers
8
votes
0
answers
386
views
How the Error() term in aov() decides what goes in which stratum?
I am trying to understand how the principles of nested anova in R, but I am having extreme difficulty with the error term.
Imagining the simplest case. I measured plant growth in two places, A and B. ...
8
votes
0
answers
2k
views
Will Tukey multiple comparison be the same for different types of Sum Of Squares of ANOVA for an unbalanced design
I am working on Two-Way ANOVA for an unbalanced design.
Will Tukey multiple comparison be the same for different types (I, II & III) of Sum Of Squares of ANOVA for an unbalanced design.
I am ...
8
votes
0
answers
1k
views
Missing cells with Type III SS
I have a linear model of the form y ~ x + z + x:z.
I have unbalanced data and further have a few missing cells (data would be unbalanced even without those missing cells).
My understanding of the ...
6
votes
0
answers
97
views
Posthoc pairwise test on the output of a linear mixed-model (MATLAB or R/Python)
I have observations from three groups of participants (A, B, C), that each represent ratings on three different measures (measure 1, 2, and 3). I would like to know if it is the case that, regardless ...
6
votes
0
answers
239
views
How does R's aov function 'work better' with orthogonal contrasts?
The help page for R's aov function states:
The default ‘contrasts’ in R are not orthogonal contrasts, and aov and its helper functions will work better with such ...
6
votes
0
answers
487
views
Orthogonality in ANOVA and Regression Analysis
I read the following (Wikipedia) regarding contrast coding of categorical variables:
Unlike when used in ANOVA, where it is at the researcher’s discretion whether they choose coefficient values that ...
5
votes
0
answers
413
views
Seeking authoritative references on weighted ANOVA
I would be grateful for any reference, such as a textbook or peer-reviewed journal article (of any vintage), that contains explicit formulas for conducting a weighted ANOVA with arbitrary weights.
...
5
votes
1
answer
482
views
Randomized Block Design Models
I have been asked to fit the following models in R:
The models are based on this data:
I know the mediums are the blocks and the units of the active ingredient are the treatments. I understand how to ...
5
votes
0
answers
2k
views
What is the logic behind ANOVA on ranks?
I've read a few sources that describe ANOVA on ranks, and I am still confused on how the calculation is done, and why.
Specifically:
Is ANOVA on ranks just applying a rank transformation to the data (...
5
votes
0
answers
4k
views
No value or "."returned for Mauchly's Test of Sphericity in SPSS
I am learning how to do a Two-Way Repeated Measures ANOVA in SPSS but when I try to check the Mauchly's Test of Sphericity Significance value it only displays a single decimal point. It is also ...
5
votes
0
answers
6k
views
AIC or ANOVA to compare models?
What are the relative merits of each approach, and which circumstances call for one rather than the other?
To some extent I have a specific example in mind, which I've discussed here. In that example ...
5
votes
0
answers
3k
views
5
votes
1
answer
2k
views
Creating contrast matrix (limma) for two factorial in R
I am attempting to construct a contrast matrix that I can run in R, using the limma bioconductor package, but I am not sure that I have coded the contrast matrix correctly. A previous post and the ...
5
votes
0
answers
162
views
Is Fisher overestimating the variance here?
[NB: the title of this post used to be "Please help me decipher Fisher on ANOVA". I've edited the question to make it more focused, and modified the title accordingly.]
Since anything written by R. ...
5
votes
0
answers
2k
views
When using repeated-measures ANOVA in R, what does it mean to specify Error(subject) instead of Error(subject/(A*B))?
For a two-way repeated measures design, we can specify the model using aov in the following fashion:
...