gplotmatrix with continuous 3rd parameter
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
F S
am 27 Okt. 2017
Kommentiert: Walter Roberson
am 30 Okt. 2017
Hi,
I would like to plot a gplotmatrix, but instead of coloring the marks according to grouping variables (eg. [1, 2, 3, 4]) with distinct colors I would like to color them depending on a 3rd continuous parameter (eg. [1 1.01 1.02 .... 3.99 4]) using a colormap like jet.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 27 Okt. 2017
gplotmatrix() is not able to do that. The scatter-looking plots that gplotmatrix() creates are not scatter objects: they are line objects. line objects cannot have different colors for different points.
You could, hypothetically, use gplotmatrix() to create the data, and then loop through the returned line objects (first output), replacing each line with a scatter plot using the same information but setting CData as appropriate. You would have to figure out what the source and destination columns are for each object in order to pick out the appropriate continuous information to use as the colour.
4 Kommentare
Walter Roberson
am 30 Okt. 2017
Yes, that is correct.
Earlier I said that it returns C x C x 2. I should have said C x C x G where G is the number of groups.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Distribution Plots 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!