Effacer les filtres
Effacer les filtres

How to combine two histograms

50 vues (au cours des 30 derniers jours)
SS
SS le 23 Août 2019
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?

Réponse acceptée

Steven Lord
Steven Lord le 23 Août 2019
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.

Plus de réponses (0)

Catégories

En savoir plus sur Data Distribution Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by