How to set X axis to particular time frame on Matlab plot?
Show older comments
I've created a plot for a timeseries data using a timetable dataframe in matlab. However it is displaying the whole of the time series when I only want to display from the beginning of 1885 to the end of 1999 on the x axis. I've attached my current plot for reference.
3 Comments
Mathieu NOE
on 24 Mar 2021
hello again !
I suppose you mean 1985 and not 1885
have you tried to force the xaxis within these limits ?
add this code after the plot :
set(gca,'XLim',[datetime(1985,01,01) datetime(2000,01,01)])
Elizabeth Lees
on 24 Mar 2021
Mathieu NOE
on 25 Mar 2021
hello
I'll be happy to further help you within the limits of my competences !
for the Pearsons Correlation topic, I see someone has already provided a good answer about how to get rid of the NaN values that causes the trouble
for the Nash-Sutcliffe coefficient, could you share the data ? maybe do it ith the right post , not here
Answers (0)
Categories
Find more on Matrices and Arrays in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!