pct_change()
生活随笔
收集整理的這篇文章主要介紹了
pct_change()
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
df.pct_change()
DataFrame.pct_change(periods=1, fill_method=‘pad’, limit=None, freq=None, **kwargs)
表示當前元素與先前元素的相差百分比,當然指定periods=n,表示當前元素與先前n 個元素的相差百分比。
參考文檔
例子:
df = pd.DataFrame({
‘FR’: [4.0405, 4.0963, 4.3149],
‘GR’: [1.7246, 1.7482, 1.8519],
‘IT’: [804.74, 810.01, 860.13]},
index=[‘1980-01-01’, ‘1980-02-01’, ‘1980-03-01’])
print(df)
print(df.pct_change())
print(df.pct_change(axis=‘columns’))#可以指定按照行還是列進行計算的
總結
以上是生活随笔為你收集整理的pct_change()的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 如何做波动率的分析呢?
- 下一篇: innovation