Trying to parse dates on the format YYYY-WW
to a Timestamp
but this just yields the start date of the year, like so:
In [11]: pd.to_datetime('2015-09', format='%Y-%W')
Out[11]: Timestamp('2015-01-01 00:00:00')
Is this the expected behaviour? If so, how can I yield the "first day starting"?