Python numpy.irr()
numpy.irr(values) :这个金融函数帮助用户计算内部收益率值,即 内部收益率即 “平均 “周期性复利回报率。
参数 :
values :[array-like] 输入每个时间段的现金流。”存款 “净额为负,”提款 “净额为正。
返回 :定期输入值的内部收益率。
代码:
# Python program explaining
# irr() function
import numpy as np
'''
Question :
Investment = 500
Withdrawals 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