我有一个数据框
date count
0 2012-03-23 2
1 2012-03-25 1
2 2012-03-26 1
3 2012-03-27 1
4 2012-03-28 3
5 2012-04-05 2
6 2012-04-06 1
7 2012-04-08 2
8 2012-04-10 1
9 2012-04-11 1
我正在尝试使用
从日期列中获取日期范围df.set_index('date').resample('D').fillna(0).reset_index()
但这会导致
AttributeError: 'int' object has no attribute 'lower'
即使日期列中没有字符串。
知道什么是错误?