b = pd.read_csv('b.dat')b.index = pd.to_datetime(b['date'],format='%m/%d/%y %I:%M%p')b.groupby(by=[b.index.month, b.index.year])
要么
b.groupby(pd.Grouper(freq='M')) # update for v0.21+
欢迎分享,转载请注明来源:内存溢出
b = pd.read_csv('b.dat')b.index = pd.to_datetime(b['date'],format='%m/%d/%y %I:%M%p')b.groupby(by=[b.index.month, b.index.year])
要么
b.groupby(pd.Grouper(freq='M')) # update for v0.21+
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)