Average column data with specific values
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Nick Austinos
le 23 Août 2022
Commenté : Nick Austinos
le 23 Août 2022
I have the data below, I am trying to average the column gdppc for each country.
0 commentaires
Réponse acceptée
Robert U
le 23 Août 2022
Hi Faustine Enos,
I do not know how your data is available and what data type you chose. It is preferrable to use table type data. Then, you can adjust the following code snippet:
col_1 = {'Country A';'Country A';'Country A';'Country A';'Country B';'Country B';'Country B';'Country C'};
col_2 = [1; 2; 3; 4; 5; 6; 7; 8];
data = table(col_1,col_2,'VariableNames',{'Country','value'});
cCountry = unique(data.Country);
for ik = 1:numel(cCountry)
sumVal(ik) = sum(data.value(ismember(data.Country,cCountry{ik})));
disp(sprintf('%s %d',cCountry{ik},sumVal(ik)));
end
Kind regards,
Robert
Plus de réponses (1)
Simon Chan
le 23 Août 2022
G = groupsummary(T,"country","mean","gdppc") % where T is the table array
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!