How can I plot Months in x axis in Matlab

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

回答(1 个)

Michael Haderlein
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 个评论
Dedong Huang
Dedong Huang 2021-12-11
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?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Data Distribution Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by