Plotting data with 5 dimensions

조회 수: 6 (최근 30일)
Teshan Rezel
Teshan Rezel 2021년 7월 7일
댓글: Mohammad Sami 2021년 7월 10일
Hi folks,
I have a dataset that has data points each with a name and 4 elements. However, of these elements are percentages that add up to a hundred, so a stacked graph will do the trick. The problem is that I need to include the 4th element, which is a number, as well as the names of the points.
For example, I could have:
A B C D
point1 = 64% 26% 10% 23
point2 = 83% 10% 7% 18
Is there a way to adequately display all this information in a single plot without clutter? I was thinking of representing each data point as a mini pie chart, with the diameter of the circle highlighting column D, and columns A, B and C in the graph as normal, but I'm unsure how to go about this!
  댓글 수: 6
Steven Lord
Steven Lord 2021년 7월 8일
Since these seem to have different units (one percentages, one a number of items?) does it make sense to have them on the same plot? Or would a pair of plots, one a stacked plot and one a line plot, with the plots themselves on axes stacked vertically make more sense?
Teshan Rezel
Teshan Rezel 2021년 7월 9일
hi @Steven Lord, yes it makes sense because the column D contains properties of the sample that are intrinsically related to the configuration of the 3 other columns

댓글을 달려면 로그인하십시오.

채택된 답변

Mohammad Sami
Mohammad Sami 2021년 7월 8일
How about you use the stacked chart as you intended and then just change the x axis to display the value of column D.
data = [64 26 10 23; 83 10 7 18];
datasub = data(:,1:3);
cats = categorical(compose('D = %i',data(:,4)));
b = bar(cats,datasub,'stacked');
set(b,{'DisplayName'},{'A';'B';'C'});
legend
  댓글 수: 7
Teshan Rezel
Teshan Rezel 2021년 7월 9일
hi @Mohammad Sami, thanks for this! This gets around the horzcat issue. The problem now is that the labels for the percentages seem to be incorrect. I'm not sure what's causing this so not sure how to correct it!
Mohammad Sami
Mohammad Sami 2021년 7월 10일
The values are incorrect or just you are getting more decimal points then what you need ? If the later you can change the format spec inside the compose function to your desired formatting. Example %f or %0.2f You can see documentation for format spec under sprintf if you need more details. https://www.mathworks.com/help/matlab/ref/sprintf.html

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by