How to pick the right month?

2 visualizaciones (últimos 30 días)
gjashta
gjashta el 30 de Abr. de 2019
Comentada: gjashta el 5 de Mayo de 2019
The data file covered 13 years from 2003-2016.
But in the data there is no date just the values of prices and demand.
So, can you help me to write a simple code to pick the date,
for example the data of march for all the years?? Then how to calculate the mean and the std for each month?
  2 comentarios
Walter Roberson
Walter Roberson el 1 de Mayo de 2019
It would have been better if you had left the information that the data file covered 13 years from 2003: that would have provided context for other people reading the question hoping to learn from it.
Remember that we are not providing free private consulting service: we volunteer so that everyone can learn from what we say, by reading the questions and answers both.
gjashta
gjashta el 1 de Mayo de 2019
Sorry for my mistake!

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 30 de Abr. de 2019
Price = Data1(:,1);
Demand = Data1(:,2);
tv = (datetime([2003,1,1]):datetime([2015,12,31])).';
[Y,M,D] = ymd(tv);
DT = timetable(Price, Demand, Y, M, D, 'RowTimes', tv);
Now you can do tests such as
MarchData = DT(DT.M==3,:);
and you can also use timerange() selectors, https://www.mathworks.com/help/matlab/ref/timerange.html
and you can also do calculations such as
retime(DT, 'monthly', 'sum')
  4 comentarios
gjashta
gjashta el 1 de Mayo de 2019
Thank you!
gjashta
gjashta el 5 de Mayo de 2019
How can I substract the mean of march for each year from the daily demand of march? Two vectors with defferent length.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Dates and Time en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by