Top ranking features using fscmrmr() have 0 for scores
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tyler Hoang
el 4 de Mzo. de 2022
Respondida: Prince Kumar
el 31 de Mzo. de 2022
Hi,
I used fscmrmr() on a dataset of 100 observations by 1000 features. The top 100 features have scores 0 where as the remaining features have some scores > 0. Is this normal?
Assuming the idx and scores below were already ranked.
[idx,scores] = fscmrmr(X,Y);
Many thanks
0 comentarios
Respuesta aceptada
Prince Kumar
el 31 de Mzo. de 2022
Hi,
load ionosphere
[idx,scores] = fscmrmr(X,Y);
bar(scores(idx))
xlabel('Predictor rank')
ylabel('Predictor importance score')
One important thing to note is that idx and scores are in sorted order.
scores
idx
Hope this helps!
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!