Graph with countries in x axis
1 回表示 (過去 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
0 件のコメント
回答 (1 件)
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)
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!