简体   繁体   English

将 pandas.df.pct_change() output 格式化为百分比时出现 TypeError

[英]TypeError while formatting pandas.df.pct_change() output to percentage

I'm trying to calculate the daily returns of stock in percentage format from a CSV file by defining a function.我正在尝试通过定义 function 从 CSV 文件中以百分比格式计算股票的每日收益。 Here's my code:这是我的代码:

def daily_ret(ticker):
  return f"{df[ticker].pct_change()*100:.2f}%"

When I call the function, I get this error:当我调用 function 时,我收到此错误:

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-40-7122588f1289> in <module>()
----> 1 daily_ret('AAPL')

<ipython-input-39-7dd6285eb14d> in daily_ret(ticker)
      1 def daily_ret(ticker):
----> 2   return f"{df[ticker].pct_change()*100:.2f}%"

TypeError: unsupported format string passed to Series.__format__

Where am I going wrong?我哪里错了?

f-strings can't be used to format iterables like that, even Series: f-strings 不能用于格式化这样的迭代,即使是 Series:

Use map or apply instead:使用map或改为apply

def daily_ret(ticker):
    return (df[ticker].pct_change() * 100).map("{:.2f}%".format)
def daily_ret(ticker):
    return (df[ticker].pct_change() * 100).apply("{:.2f}%".format)

import numpy as np
import pandas as pd

df = pd.DataFrame({'A': np.arange(1, 6)})

print(daily_ret('A'))
0       nan%
1    100.00%
2     50.00%
3     33.33%
4     25.00%
Name: A, dtype: object

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM