How to find data
古いコメントを表示
Can I ask how to find variables with the same country name, correspond total death, cases and plot it on the graph which in a huge data set like this
4 件のコメント
David Hill
2022 年 5 月 19 日
Do you want to sum the total deaths for each of the countries and then plot countries vs. total deaths?
Jan
2022 年 5 月 19 日
This is a CSV file. What do you call "variables"? Did you import the file already? If so, to which kind of variable? How should the graph look like? 75847 rows are too many to be processed by a human, but for Matlab this is not huge.
John fredson
2022 年 5 月 19 日
John fredson
2022 年 5 月 19 日
回答 (1 件)
David Hill
2022 年 5 月 19 日
t=readtable('owid-covid-data_2020-21.csv');
u=unique(t.Location);
s=zeros(1,length(u));
for k=1:length(u)
s(k)=sum(t.TotalDeaths(ismember(t.Location,u(k))));
end
bar(1:length(u),s)
カテゴリ
ヘルプ センター および File Exchange で File Operations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!