📜  Python中的 numpy.irr()

📅  最后修改于: 2022-05-13 01:55:00.264000             🧑  作者: Mango

Python中的 numpy.irr()

numpy.irr(values) :此财务函数可帮助用户计算 IRR 值,即内部收益率,即。 “平均”周期性复合回报率。

代码:

Python3
# Python program explaining
# irr() function
 
import numpy as np
'''
Question :
 
    Investment = 500
    Withdrawls at regular interval : 50, 31, 3, 11
'''
 
Solution = np.irr([-500, 50, 31, 3, 11])
 
print("Solution - Internal Rate of Return : ", Solution)


输出:

Solution - Internal Rate of Return :  -0.5296447721512683