Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Please review the randomization test code

1 回表示 (過去 30 日間)
BYUNGSUK KIM
BYUNGSUK KIM 2019 年 12 月 13 日
閉鎖済み: Adam Danz 2019 年 12 月 13 日
Hi.
I created code for Randomization t-test (2-samples)
The final p value appears as 1 for all row data.
Please review the code below and the attached data for correctness.
Thank you.
[code]
eA= y- yhatA;
eB= y- yhatB;
diff=eA.^2-eB.^2;
meandiff=mean(diff);
n=length(diff);
niter = 199
sum= 0;
for k = 1: niter
randomsign=2*round(rand(1,n))-1;
signeddiff =randomsign. *diff;
meansigneddiff=mean(signeddiff);
sum=sum+...
(abs(meansigneddiff)>
=abs(meandiff));
end
pvalue=(sum+1)/(niter+1)

回答 (0 件)

この質問は閉じられています。

製品

Community Treasure Hunt

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

Start Hunting!

Translated by