I have a scatterplot where the points are colored by group number. How do I add a legend with the group color attached?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Michael Williams
am 26 Jan. 2018
Bearbeitet: Michael Williams
am 29 Jan. 2018
I have a scatter plot with each point colored by it's cluster number (ranging from 1 to 5) and I'm trying to add a legend that will indicate which color belongs to which group.
scatter(Data.X, Data.Y, Data.ClusterNumber); legend(strcat('Group: ', num2str(transpose(1:5))))
The above gets me the scatter plot and legend, but there is only a single dot for all 5 clusters.
0 Kommentare
Akzeptierte Antwort
Star Strider
am 26 Jan. 2018
If you have the Statistics and Machine Learning Toolbox, it is probably easier to use the gscatter (link) function.
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Legend finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!