How to add spaces between bars on a histogram

29 Ansichten (letzte 30 Tage)
Joseph Turner
Joseph Turner am 13 Apr. 2021
Bearbeitet: Adam Danz am 15 Apr. 2021
I have the following MATLAB code:
histogram(degree(G1),'Normalization','probability')
And I would like to add a space between each bar of the histogram, with x axis of the graph being integer numbers.

Akzeptierte Antwort

Adam Danz
Adam Danz am 14 Apr. 2021
> I would like to add a space between each bar of the histogram, with x axis of the graph being integer numbers.
Sounds like you're describing a bar plot rather than a histrogram. See histogram > Name-Value inputs > Normalization > probability to learn how to normalize the inputs for the bar inputs.
If you get stuck, show us where you're at and we can help you get unstuck. If a bar plot is not what yo're looking for, some additional details may be helpful.
  2 Kommentare
Joseph Turner
Joseph Turner am 14 Apr. 2021
Bearbeitet: Joseph Turner am 14 Apr. 2021
Thanks a lot for your help. I meant similar to the image attached, where there is a space between each bar. I have tried using 'barWidth' but this will not work since my data is not categoric
Adam Danz
Adam Danz am 14 Apr. 2021
Bearbeitet: Adam Danz am 15 Apr. 2021
Yep, definitely want to use a bar plot and that does not require your data to be categorical. Why can't you use bar?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Image Analyst
Image Analyst am 15 Apr. 2021
Use histcounts(), which does not plot, rather than histogram (which does plot), and then use bar(counts, widthFraction) to plot
counts = histcounts(data);
bar(counts, 0.4); % Duty cycle of 40% for the bars gives a big space between the bars.
grid on;

Kategorien

Mehr zu Data Distribution Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by