How can I plot Months in x axis in Matlab

13 views (last 30 days)
I have a excel sheet
Jan =-9.863459038
Feb=-34.33708151
Mar=-57.98922801
Apr=-52.98083559
May=-46.13563686
Jun=-24.15487463
Jul=-8.47398491
Aug=-4.773884307
Sep=-10.32493525
Oct=-7.700825238
Nov=6.015198544
Dec=11.1233672
I have to plot a graph whose x axis is month.I want to plot it by Jan,Feb etc. How can I do it.

Answers (1)

Michael Haderlein
Michael Haderlein on 1 Apr 2015
You can set the xticklabels:
y=rand(1,12);
figure, plot(y)
set(gca,'xtick',1:12,...
'xticklabel',{'Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'})
  5 Comments
Dedong Huang
Dedong Huang on 11 Dec 2021
Hello,
I just tried this method with my data and it plotted a line graph but the y axis is less than 1 and my y axis data on my table are all above 5, how do i fix this?

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!