How to get the frequency of a column of values

I have a column of data containing the study year of the sampling stations:
1950
1953
1953
1953
1957
1957
1959
1959
1959
1959
...
I want to plot something like histogram myself.
How do I get a two column data, with the left column containing all the possible years, and the right column containing their frequencies?
1950, 1
1953, 3
1957, 2
1959, 4
Thanks.

 採用された回答

Amit
Amit 2014 年 1 月 21 日

0 投票

table = tabulate(A); % where A is your data
% if you want exactly the way you said
table(:,3) = [];

1 件のコメント

Leon
Leon 2014 年 1 月 21 日
This is exactly what I am looking for!
Thank you very much.

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

その他の回答 (0 件)

カテゴリ

タグ

質問済み:

2014 年 1 月 21 日

コメント済み:

2014 年 1 月 21 日

Community Treasure Hunt

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

Start Hunting!

Translated by