我有这行有效的代码:results_percentage = results_percentage.set_index('date').dropna(how='all').resample('M').last()当我尝试使用 forloop 来完成同样的工作时,它不起作用。(我稍后需要使用 y ):list_a = [ (results_percentage, "results_percentage")]
for x, y in list_a :
x = x.set_index('date').dropna(how='all').resample('M').last()
1 回答
侃侃尔雅
TA贡献1801条经验 获得超15个赞
您不是在更新对象,而是在创建一个新对象并将其分配给名为x
, not的变量list_a[0][0]
。
用于inplace=True
改变对象
x.set_index('date', inplace=True) x.dropna(how='all', inplace=True)
或者,您可以分配回列表
for i, (x, y) in enumerate(list_a): list_a[i] = (x.set_index('date').dropna(how='all'), y)
添加回答
举报
0/150
提交
取消