gpt4 book ai didi

python - Pandas 数据框中列的输出从 float 到货币(负值)

转载 作者:太空宇宙 更新时间:2023-11-03 13:38:02 28 4
gpt4 key购买 nike

我有以下数据框(由负数和正数组成):

df.head()
Out[39]:
Prices
0 -445.0
1 -2058.0
2 -954.0
3 -520.0
4 -730.0

我试图将“价格”列更改为在将其导出到 Excel 电子表格时显示为货币。我使用的以下命令运行良好:

df['Prices'] = df['Prices'].map("${:,.0f}".format)

df.head()
Out[42]:
Prices
0 $-445
1 $-2,058
2 $-954
3 $-520
4 $-730

现在我的问题是,如果我希望输出在美元符号之前有负号,我该怎么办。在上面的输出中,美元符号在负号之前。我正在寻找这样的东西:

  • -$445
  • -2,058 美元
  • -$954
  • -$520
  • -$730

请注意也有正数。

最佳答案

您可以使用 np.where 并测试值是否为负数,如果是,则在美元前面添加一个负号,然后使用 astype 将该系列转换为字符串>:

In [153]:
df['Prices'] = np.where( df['Prices'] < 0, '-$' + df['Prices'].astype(str).str[1:], '$' + df['Prices'].astype(str))
df['Prices']

Out[153]:
0 -$445.0
1 -$2058.0
2 -$954.0
3 -$520.0
4 -$730.0
Name: Prices, dtype: object

关于python - Pandas 数据框中列的输出从 float 到货币(负值),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36604384/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com