How to change the tick frequency on a timeseries x axis

Hello can u please let me know how can I change the xticks on a time series. The ticks are displayed every 3 months, while I need one month ticks. The time series dates are real data and can not evenly distribute them. Thank you for your reply. Best, Nick

 Respuesta aceptada

Walter Roberson
Walter Roberson el 27 de En. de 2014
Editada: Walter Roberson el 27 de En. de 2014
You will need to set the axes XTick property yourself.

Más respuestas (1)

Nikolaos Zikas
Nikolaos Zikas el 27 de En. de 2014
Thank you for your timely response. Any idea of how that can be done?

3 comentarios

If the X axis is in serial date number, then a month is approximately 30 days, so at first pass you could use
set(gca, 'XTick', (first_datenum : 30 : last_datenum) );
There are more exact methods, of course.
thank you. I appreciate your help.
can you tell exact method as well?

Iniciar sesión para comentar.

Etiquetas

Preguntada:

el 27 de En. de 2014

Comentada:

el 19 de Nov. de 2017

Community Treasure Hunt

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

Start Hunting!

Translated by