The time coloumn of my dataframe looks like the following
# time
# %Y-%m-%d
# 2000-01-01
# 2000-01-02
# ...
I would like to split the date coloumn in one for the year and one for the month (I dont need the days) So the output should look like the following:
# year month
# %Y %m
# 2000 01
# 2000 02
# ...