How do I plot specific data from an export excel file?
Mostrar comentarios más antiguos
I have a excel file with data which contains category and value. For example: Canada---3---30, Canada---4---40, Italy---3---20
I would like to plot the data only for the country I want, I use 'location=input('location=')', and would like the graph to only show the data for the location I typed for my plot(x,y).
How should I do that? Thank you.
1 comentario
Sudhakar Shinde
el 27 de Oct. de 2020
Respuestas (1)
Sudhakar Shinde
el 27 de Oct. de 2020
Example:

Then you need plot of Value1 vs Value2 of country 'Canada' :
table=readtable('test1.xlsx');
Data= contains((table.Country),'Canada');
plot(table.Value1(Data),table.Value2(Data);)
6 comentarios
Wong En Xin
el 27 de Oct. de 2020
Sudhakar Shinde
el 27 de Oct. de 2020
If you could add your example data excel sheet, you may get more proper way.
Wong En Xin
el 28 de Oct. de 2020
Wong En Xin
el 28 de Oct. de 2020
Sudhakar Shinde
el 28 de Oct. de 2020
Editada: Sudhakar Shinde
el 28 de Oct. de 2020
country = input('Input Country: ','s');
Data= contains((table.location),country); %Filter the data with location input
plot(table.days_tracked(Data),table.total_cases(Data)); %Plot days_tracked vs total_cases
% for input location
Above code lines will serve ur purpose.
Wong En Xin
el 28 de Oct. de 2020
Categorías
Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
