feature ranking for regression using F-tests
Show older comments
Hi,
I have table data with containing 11 different features for which i have to apply F-test, check their ranking and then plot them in order of the highest ranking. For this purpose, i am trying to use fdrftest() command but showing the error "Undefined function or variable 'fsrftest'" as mentioned below. If somone can help out with this issue. Thanks in advance.
>> table_data = readtable('data.txt');
varnames={'a1';'a2';'a3';'a4';'a5';'a6';'a7';'a8';'a9';'a10';'a11';'b'};
table_data.Properties.VariableNames = varnames;
idx = fsrftest(table_data,'b')
Undefined function or variable 'fsrftest'.
Accepted Answer
More Answers (0)
Categories
Find more on Hypothesis Tests in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!