Graph with countries in x axis
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Utkarsh Belwal
le 24 Juin 2019
Modifié(e) : Utkarsh Belwal
le 24 Juin 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)
0 commentaires
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!