How to draw a graph from this table

2 次查看(过去 30 天)
I have a spreadsheet of the format
2021 2020 2019
male 50 45 40
female 50 55 60
I now want to draw a graph with x axis years and y axis male and female. I also want to draw a pie chart of 2021 for male and female.

采纳的回答

Shubham Khatri
Shubham Khatri 2021-4-9
编辑:Shubham Khatri 2021-4-9
Hello,
You can start by reading data from excel by using readtable. You can find more information about readtable here.
To draw the graph, you can use the plot function. To draw a pie chart you can use the function pie. I am providing a sample code here to help you
gender=[50 45 40; 50 55 60] %The table which I got from the excel
plot(gender(1,:),gender(2,:)) %using plot function, the first row is for male and the second for females
pie(gender(:,1)) % plotting a pie chart for all rows and with the first column( year 2021)
Hope it helps

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Pie Charts 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by