2 Factor Anova with Repetitions

13 views (last 30 days)
I need to do a 2 Factor Anova Test, or any anova test at that. My problem is with how to notate my data for my tests.
I have 2 Factors, Eact with 4 levels, and 2 values at each level.
i.e. Factor B
1 2 3 4
1 a,b c,d e,f g,h
Factor A 2 i,j
..... and so on to complete.
How do I set up a matrix or get anova to read that each level for each factor has 2 values that need to be assessed?

Accepted Answer

Jonas
Jonas on 20 Apr 2021
Edited: Jonas on 20 Apr 2021
i would use anovan(data,{factor1,factor2}), it's in my opinion a bit easier to handle. data is a column vector of length N, factor1 and factor2 can be column vectors or colum cells with length N.
you could also use it's 'nested' option
  3 Comments
Jonas
Jonas on 20 Apr 2021
Edited: Jonas on 20 Apr 2021
are a,b two values of a repeated measure, do they measure the same paramter? anovan can just handle one value per row, but if u measure two different things you could maybe do two anovas, one for each number of the pair. if you have repeated measures i think you have to have a look into ranova
Nicholas Danner
Nicholas Danner on 20 Apr 2021
a and b are two separate values yes, for two tests done at the same factor A level and factor B level...

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!