1 %> @brief Feature subset grader - ANOVA
5 %> Whether to make result
as -log10(p_value)
9 methods(Access=protected)
10 function z = test(o, dd, idxs)
11 % actually the third parameter (alpha) is irrelevant because we want the p-value only
12 z = zeros(1, numel(idxs));
14 X = dd(1).X(:, idxs{i});
15 z(i) = anova1(X, dd(1).classes,
'off');
25 o.classtitle = 'ANOVA';
27 o.flag_univariate = 1;
Feature subset grader that uses a statistical test.
Feature subset grader - ANOVA.
Analysis Session (AS) base class.