Graph with countries in x axis

조회 수: 8 (최근 30일)
Zongo Amara Mohamed Isaac
Zongo Amara Mohamed Isaac 2019년 6월 24일
편집: Utkarsh Belwal 2019년 6월 24일
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