Graph with countries in x axis

8 visualizaciones (últimos 30 días)
Zongo Amara Mohamed Isaac
Zongo Amara Mohamed Isaac el 24 de Jun. de 2019
Editada: Utkarsh Belwal el 24 de Jun. de 2019
Hey guys,
I've just become very familiar with Matlab, but I'm having trouble building a graph:
on the X axis I would like to have the name of countries .
I don't know the code to use
thanking you in advance
attached my file

Respuestas (1)

Utkarsh Belwal
Utkarsh Belwal el 24 de Jun. de 2019
Editada: Utkarsh Belwal el 24 de Jun. de 2019
Example of how to plot BankingHeter vs Countries graph using plot function,
A = readtable('UE.xlsx') ;
A.Countries = categorical(A.Countries) ;
plot(A.Countries , A.BankingHeter)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by