FutureWarning: Indexing with multiple keys (implicitly converted to a tuple of keys) will be deprecated, use a list instead. df2 = df.groupby(['ta_acct', 'prod_csname'])['pres_share', 'pres_amt'].sum().reset_index()
时间: 2023-08-09 20:12:22 浏览: 180
A modern text indexing library for go.zip
这个警告意味着使用元组作为多个键的索引会在将来被弃用,建议使用列表。在这个特定的示例中,你可以将`['pres_share', 'pres_amt']`改为`[['pres_share', 'pres_amt']]`来避免警告。这是因为`groupby`函数需要一个键的列表,而不是元组。修改后的代码如下所示:
```
df2 = df.groupby(['ta_acct', 'prod_csname'])[['pres_share', 'pres_amt']].sum().reset_index()
```
阅读全文