optimal data structure stacked bar plot

2 次查看(过去 30 天)
VMat
VMat 2016-9-20
评论: VMat 2016-9-20
Hello. I wish to plot a bar chart, with the following constraints:
  • x axis contains 6 values (strings)
  • y axis records the time
  • each bar shall contains in a stacked way 5 different run time, associated with the corresponding value on the x axis (i.e. the same algorithm runs 5 times for each of the values in x, timer is set through tic/toc)
  • given the i-th run (which corresponds to the i-th slot on each bar), it is coloured the same across the six bars
  • different runs are given different colours (i.e. five colours in total)
I am not familiar with matlab map objects nor multi dim arrays: I am having troubles displaying the stacked bars, could you please help on what would be the optimal way to represent data in this common case? Basically, if considering a matrix form to store the runs time, each bar in the plot would be one column of a 5 X 6 matrix.
Many thanks for any hint.

回答(1 个)

Alan Weiss
Alan Weiss 2016-9-20
Sounds like you want a stacked bar graph.
You also want the x-axis to have strings. Try this:
ax = gca;
ax.XTick = 1:6;
ax.XTickLabel = {'Low','Lowish','Medium','Highish','High','Super'};
Good luck,
  1 个评论
VMat
VMat 2016-9-20
Thanks Alan.
I am not new to these information you point out, thanks again.
My question concerns rather how to best handle the data structure behind the stacked bar graph, with the constraints indicated above.
Any hint about is still very welcome, thank you.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by