Why am I receiving this error when using the vartestn function?

2 ビュー (過去 30 日間)
Victoria Helm
Victoria Helm 2020 年 6 月 30 日
コメント済み: Victoria Helm 2020 年 7 月 1 日
I tried the following code and received this error:
>> vartestn(Table.trialNum,Table.Sex,Table.ID,'TestType','LeveneQuadratic');
Error using internal.stats.parseArgs (line 42)
Wrong number of arguments.
Error in vartestn (line 98)
internal.stats.parseArgs(okargs,defaults,varargin{:});
Can anyone help me understand what these errors mean?

採用された回答

Adam Danz
Adam Danz 2020 年 7 月 1 日
編集済み: Adam Danz 2020 年 7 月 1 日
In the code you shared, I see 3 inputs and one name-value pair.
vartestn(Table.trialNum, Table.Sex, Table.ID, 'TestType', 'LeveneQuadratic');
The syntax described in the documentation describes a max of 2 inputs followed by name-value pairs.
Furthermore, from the documentation, x can be specified as a matrix or column vector. If a grouping variable group is specified, then x must be a column vector. So, you have 1 too many inputs.
Decide which variable is your grouping variable and which variable contains the data you're testing.

その他の回答 (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