I need to generate an array of dates at specific intervals. for example every 3 sunday of the month:
[2019-02-17, 2019-03-17, 2019-04-21]
Is it possible to do this using standard pandas functions? For example, specifying some particular freq
field in the pd.date_range
method or using pd.Dateoffset
?