Graph with countries in x axis

3 次查看(过去 30 天)
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

回答(1 个)

Utkarsh Belwal
Utkarsh Belwal 2019-6-24
编辑:Utkarsh Belwal 2019-6-24
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)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by