How to transform the normalized values of a histogram (i.e. the bars heights) in percentages?

8 ビュー (過去 30 日間)
How to transform the normalized values of this histogram (i.e. the bars heights) in percentages?
I should multiply the bars values by 100, but how to do it ? (maybe inside the "histogram" function)
a = [0 0 0 1 1 1 1 1 1 3 3 3 2 2 4 4 39 39 39 39 39 39 40 40 40 40 40 40 40 0 0 0 0 0 0 0 41 41 41];
histogram(a,'Normalization','probability')
This could be a workaround:
bar(histcounts(a)/(sum(histcounts(a)))*100)
BUT:
  1. the bars are shifted towards right (why??)
  2. I would like to still use the "histogram" function (if possible, obviously)
Any idea ?
  3 件のコメント
Sim
Sim 2023 年 2 月 8 日
編集済み: Sim 2023 年 2 月 8 日
Oh cool, thanks a lot @Les Beckham!! :-)
Les Beckham
Les Beckham 2023 年 2 月 8 日
You are quite welcome.

サインインしてコメントする。

採用された回答

Star Strider
Star Strider 2023 年 2 月 8 日
Altering the histogram plot is likely not possible because the ‘Values’ vector is read-only.
The easiest approach is likely to re-plot the bar plot using the derived values —
a = [0 0 0 1 1 1 1 1 1 3 3 3 2 2 4 4 39 39 39 39 39 39 40 40 40 40 40 40 40 0 0 0 0 0 0 0 41 41 41];
figure
hh = histogram(a,'Normalization','probability');
xlabel('Centers')
ylabel('Probability')
Values = hh.Values*100;
Cntrs = hh.BinEdges(1:end-1) + diff(hh.BinEdges)/2;
figure
bar(Cntrs, Values)
xlabel('Centers')
ylabel('Percent')
.
  4 件のコメント
Sim
Sim 2023 年 2 月 8 日
@Star Strider Yes yes, true, many thanks for having presented a solution related to the histogram function, I am very grateful! (this is a way to learn/understand deeper the functions available in Matlab)
Star Strider
Star Strider 2023 年 2 月 8 日
As always, my pleasure!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeHistograms についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by