Remove dates from plot
5 次查看(过去 30 天)
显示 更早的评论
I have to plot this time series

As you may notice there is a missing period immediately after 2012. I would like to remove this period. So I have done is this:
I have identified the ordinal number of the dates and I have removed both from x and y:
X(1553:1574) = [];
Y(1553:1574) = [];
But the result is the following

The time-series now looks as it is contant in the removed dates. Any suggestion on how to remove the period?
0 个评论
回答(1 个)
Kevin Holly
2021-9-27
编辑:Kevin Holly
2021-9-27
An easy way to resolve this could be this:
plot(X(1:1552),Y(1:1552),'k')
hold on
plot(X(1575:end),Y(1575:end),'k')
Edit: I just realized I misunderstood what you wanted. You want to edit the x-axis scale? You can't just close the gap as your scale would be off. Did you want a break in scale?
If so, see:
2 个评论
Kevin Holly
2021-9-29
Just came across this and thought about this question:
Does this answer help?
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!