How can I use random forest classifier with an excel file?
Mostrar comentarios más antiguos
I have prepared a data set in excel. Now how I will implement this in random forest classifier??
2 comentarios
Look at these two functions and associated documentation:
and
Zara Khan
el 25 de Sept. de 2018
Respuestas (1)
Bernhard Suhm
el 3 de Oct. de 2018
Something like this:
data = xlsread('filename');
mdl = fitcensemble(data,'class');
Categorías
Más información sobre Classification Ensembles en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!