gplotmatrix with continuous 3rd parameter
조회 수: 3 (최근 30일)
이전 댓글 표시
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
채택된 답변
Walter Roberson
2017년 10월 27일
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
Walter Roberson
2017년 10월 30일
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.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Distribution Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!