to run NaN values with anova1

27 visualizaciones (últimos 30 días)
Cside
Cside el 9 de Sept. de 2019
Comentada: Cside el 9 de Sept. de 2019
Hi, I have a matrix (8 x 621) and would like to run Anova1 between the 8 groups (rows). I have attached how the dataset looks like but when I run anova1, keyed in
p= anova1(dataset)
my p-value is 0. This does not seem right, may I know how I should correct it?
Thank you! :)

Respuesta aceptada

Neuropragmatist
Neuropragmatist el 9 de Sept. de 2019
As per the anova1 help it expects groups to be arranged in columns, not rows:
"P = anova1(M) for a matrix M treats each column as a separate group,
and determines whether the population means of the columns are equal.
This form of anova1 is appropriate when each group has the same number
of elements (balanced ANOVA)."
So by simply transposing your matrix I get:
load('testdataset.mat')
P = anova1(testdatasetpfc_57_n1')
Picture1.png
The problem was not actually related to the NaN values because anova1 automatically ignores them.
If you did want to remove the NaNs you could follow this procedure using the 'groups' input to anova1:
load('testdataset.mat')
groups = repmat(1:8,size(testdatasetpfc_57_n1,2),1)';
P = anova1(testdatasetpfc_57_n1(:),groups(:))
Hope this helps,
M.
  1 comentario
Cside
Cside el 9 de Sept. de 2019
wow this helped me a lot. Thank you so much! :)) really appreciate it

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by