Why is there only one p-Value for the friedman test although it's a two way design
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jonas
el 20 de Abr. de 2021
Comentada: Jonas
el 2 de Mayo de 2021
like already in the title: i was searching for something like the 2 way anova but without the normal distribution requirement. the friedman test allows a two way layout but i only get 1 p-valie. but i want to know the impact of rows and column.
What am I misunderstanding? best regards
4 comentarios
Scott MacKenzie
el 2 de Mayo de 2021
OK, so head turn (degrees) is a ratio-scale measurment. You'd probably be just using using the parmetric Anova to analyse the data.
Respuesta aceptada
Shashank Gupta
el 22 de Abr. de 2021
Hi Jonas,
Friedman test in MATLAB as you pointed out give only one p-value which is associated with the column effect. Friedman effect cannot be used for interactions between the row and column factors. Although there are some workaround for separately finding out the p-values for row and column effect.
Test for column effect :-
p = friedman(x)
Test for row effect :-
% For data matrix with no replication, row effect can simply be done by
% taking transpose.
p = friedman(x');
% If the data matrix has replication then it is slightly complicated, below
% is one such template that can be done.
x = reshape(x, [3 2 3]); % First convert the data into 3 dimension data, with the first dimension representing the replicates
x = permute(x, [1 3 2]); % swapping the other two dimensions
x = reshape(x, [9 2]); % restoring the two-dimensional shape
p = friedman(x, 3);
I hope this helps.
Cheers
Más respuestas (0)
Ver también
Categorías
Más información sobre Analysis of Variance and Covariance en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!