I have a table where each entry is a word/sentence. How do I count how many times a word shows up?

1 visualización (últimos 30 días)
I have a table T that is derived from a poll taken online. As an example one column I have 'male', female', 'other' and in another column I have if the prefer 'dog' or 'cat'. My question is how do I count how many times someone answered 'male' and how many times someone answered 'female' etc. So that I can put the results into a pie graph.
gender = [{'male'}; {'female'}; {'male'}; {'male'}]
dogorcat = [{'dog'}; {'cat'}; {'dog'}; {'dog'}]
T = table(gender,dogorcat);

Respuestas (1)

Ive J
Ive J el 9 de Sept. de 2021
Check out groupsummary:
gender = {'male', 'female', 'male', 'male'}.';
dogorcat = {'dog', 'cat', 'dog', 'dog'}.';
T = table(gender,dogorcat);
genderT = groupsummary(T, 'gender')
genderT = 2×2 table
gender GroupCount __________ __________ {'female'} 1 {'male' } 3

Categorías

Más información sobre Dates and Time en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by