フィルターのクリア

vartestn error line 272

2 ビュー (過去 30 日間)
Thibaut Deville
Thibaut Deville 2020 年 6 月 9 日
コメント済み: Chidvi Modala 2020 年 6 月 23 日
Hi everyone,
I'm trying to make vartestn works but everytime I get :
Unrecognized function or variable 'testname'.
Error in vartestn (line 272)
Table{k+4,1} = testname;
Error in Statistiques (line 69)
HO_ini(counter,1).data=vartestn([A';B'],'TestType','LeveneAbsolute')
Could someone help me to solve this problem ?
A part of my currently code if it could help :
HO_ini=vartestn([A';B'],'TestType','LeveneAbsolute')
Best,
Thibaut Deville.

採用された回答

Chidvi Modala
Chidvi Modala 2020 年 6 月 16 日
Are you trying to use the Levene's tests for data with a single group?
  3 件のコメント
Chidvi Modala
Chidvi Modala 2020 年 6 月 18 日
This is a bug. I have brought this issue to the notice of our developers and will try to fix it in future releases.
Chidvi Modala
Chidvi Modala 2020 年 6 月 23 日
The vartestn function wants data as the first input and grouping information as the second. It looks like you are supplying the first data sample as the first input and the second data sample as the second. May be you can change the code from
p(counter,1) = vartestn(A,B,'TestType','LeveneAbsolute');
to
p(counter,1) = vartestn([A;B],[zeros(size(A));ones(size(B))],'testtype','leveneabsolute')
Also the original line of code above is defining a series of single-observation groups. It is not possible to estimate the variance from single observations, so the vartestn is going into a piece of code to deal with this edge case of no information.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeHypothesis Tests についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by