How can I use random forest classifier with an excel file?
Show older comments
I have prepared a data set in excel. Now how I will implement this in random forest classifier??
Answers (1)
Bernhard Suhm
on 3 Oct 2018
Something like this:
data = xlsread('filename');
mdl = fitcensemble(data,'class');
Categories
Find more on Classification Ensembles 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!