Why is there only one p-Value for the friedman test although it's a two way design
9 次查看(过去 30 天)
显示 更早的评论
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 个评论
Scott MacKenzie
2021-5-2
OK, so head turn (degrees) is a ratio-scale measurment. You'd probably be just using using the parmetric Anova to analyse the data.
采纳的回答
Shashank Gupta
2021-4-22
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
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Analysis of Variance and Covariance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!