how do I get the names of the attributes?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Kunal Roy
el 17 de Sept. de 2016
Editada: Walter Roberson
el 18 de Sept. de 2016
load iris.dat
iris(1,1)
gives me the first value of the first column
how do I access the name of the attribute?
0 comentarios
Respuesta aceptada
mizuki
el 18 de Sept. de 2016
iris.dat in Fuzzy Logic Toolbox does not have class information (name of the attribute). So, you need to add class information by yourself like:
setosa = iris((iris(:,5)==1),:); % data for setosa
versicolor = iris((iris(:,5)==2),:); % data for versicolor
virginica = iris((iris(:,5)==3),:); % data for virginica
If you have Statistics and Machine Learning Toolbox, use fisheriris instead.
load fisheriris
A variable meas contains features and Species is class information.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!