plotmatrix - how to change the color according to one variable in data?
2 次查看(过去 30 天)
显示 更早的评论
I have dataset with 5 different variables. I would like to generate plotmatrix where all plots are colored according to the first variable (first variable has values "one" or "two". I used the following code, but all my plots still have the same color.
if Y(:,1) > 1
plotmatrix(Y,'g');
hold on
else plotmatrix(Y,'r');
end
hold off
回答(3 个)
Adam
2015-11-26
编辑:Adam
2015-11-26
The final example of
doc plotmatrix
shows how colour individual plots if that is what you are aiming to do (at least in the help for R2015b and it mentions the notation change for R2014a so I assume it has been there for a few versions).
I haven't followed the steps myself, but one of the graphs shown has a different colour to the rest.
3 个评论
Matthieu Heitz
2017-7-17
The function 'gplotmatrix()' does this exactly, pass your first column of labels as the 'group' parameter. You need the Statistics and MachineLearning Toolbox though.
Tobias Held
2022-2-28
I was looking for the same function, but with a continuous scale. However, I was not able to find an answer and made a function myself. I am happy to receive feedback :)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!