フィルターのクリア

Findind repeated elements in a cell of a Table and report number of cases

1 回表示 (過去 30 日間)
Tahariet Sharon
Tahariet Sharon 2021 年 5 月 18 日
コメント済み: Tahariet Sharon 2021 年 5 月 21 日
I have a table for which I would like to find how many times a certain item is repeated (for one column [variable] only at a time), and have the number of times it happens (sorted optimally). What is the way around this?

回答 (1 件)

KSSV
KSSV 2021 年 5 月 18 日
Let a be column.
xbins = unique(a);
[counts,centres] = hist(a,xbins);
R = [centres counts']
  1 件のコメント
Tahariet Sharon
Tahariet Sharon 2021 年 5 月 21 日
Thanks. However, my variable a is a list of names of countries
{'US'}
{'China'}
etc.
This code seems to work with nummerical data.

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

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by