How to draw a graph from this table

4 visualizaciones (últimos 30 días)
alpedhuez
alpedhuez el 1 de Abr. de 2021
Editada: Shubham Khatri el 9 de Abr. de 2021
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.

Respuesta aceptada

Shubham Khatri
Shubham Khatri el 9 de Abr. de 2021
Editada: Shubham Khatri el 9 de Abr. de 2021
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

Más respuestas (0)

Categorías

Más información sobre Pie Charts en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by