How to combine two histograms

85 次查看(过去 30 天)
I have two different histogram plots with same axes limits. I want to combine them such that, I can make comparison between two different cases. How can, I do this?

采纳的回答

Steven Lord
Steven Lord 2019-8-23
Combine them as in show them in the same axes with the same bins, combine them as in add the bin counts together, or something else?
If the first, call hold between your histogram calls. See the "Plot Multiple Histograms" example on the histogram documentation page. You may want to set each histogram object's BinEdges to be the same if the data isn't as closely aligned as you want, or you may want to select both histogram objects (click the arrow in the figure toolbar, shift-left-click each histogram) then open the context menu by right-clicking and select the "Align Bins" option.
If you want to add the bin counts together, I'd probably call histcounts for each of your data sets with the same BinEdges, then call histogram and pass in the common BinEdges option you used in your histcount calls and the combined bin counts as the BinCounts. This is the "histogram('BinEdges',edges,'BinCounts',counts)" syntax listed in the Creation section of that documentation page.

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by