draw a histogram from an array

4 ビュー (過去 30 日間)
alpedhuez
alpedhuez 2022 年 7 月 16 日
コメント済み: Image Analyst 2022 年 7 月 18 日
I now have an array
date visitors
------ --------
1/1 5
1/2 10
1/3 12
What is the simplest way to draw a histogram of visitors?

採用された回答

Image Analyst
Image Analyst 2022 年 7 月 16 日
編集済み: Image Analyst 2022 年 7 月 16 日
Did you try
bar(t.Data, t.Visitors);
grid on;
xlabel('Date');
ylabel('Number of Visitors');
This assumes that your histogram is in a table like you showed.
  2 件のコメント
alpedhuez
alpedhuez 2022 年 7 月 16 日
histogram(t.Visitors)
Image Analyst
Image Analyst 2022 年 7 月 18 日
You'd need more than 3 samples. But if you have like hundreds of days, then that could get you a distribution of how many people visited during a certain interval of time (like one day or one week).

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by