如何将具有特定字段和 where 子句的 SQL select 语句转换为 pandas 数据框
How to convert SQL select statement with particular fields and where clause to pandas dataframe
我正在尝试将休闲 SQL 语句转换为 pandas 数据帧 python
SELECT sum(money) from df where sex='female'
我无法在 pandas
中获取此内容
提前致谢
df.loc[df.sex=='female','money'].sum()
我正在尝试将休闲 SQL 语句转换为 pandas 数据帧 python
SELECT sum(money) from df where sex='female'
我无法在 pandas
中获取此内容提前致谢
df.loc[df.sex=='female','money'].sum()