MATLAB: Problems using retime within timetable

monthly averagesquarterly averagesretimetimetable

Dear all,
Using daily zero coupon yields data from 16-Aug-1972 until 13-Jul-2018 (see Gurkaynak et al 2006), I used
rmissing(retime(data,'frequency',@mean))
to get monthly and quarterly averages. The resulting monthly averages were fine. The same holds for the quarterly averages, however, with the exemption that matlab skipped the calculation of 2008Q1. Only when first calculating monthly averages, all quarters were calculated.
Can someone educate me for why taking quarterly averages directly from daily worked for all quarters but 2008Q1?
Thanks. Best, Gavin

Best Answer

I think your data set is the following:
Looking at the data, there is NaN at 2008-03-21 in the data set (feds200628.xls) and this causes your problem. In default settings, the nanflag of the function mean is set to 'includenan'. So, the mean value of 2008Q1 was not calculated.
To avoid this, please use
retime(data,'quarterly','mean')
or
retime(data,'quarterly',@(x) mean(x, 'omitnan'))