maximum.accumulate函数及ndarray和list比较

maximum.accumulate函数及ndarray和list比较,第1张

一、ndarray不同与list
import numpy as np
array = [0,1,2,3,,4]
Indexs = [1,2,3]
array = np.delete(array,Indexs,0)
print("second array:",array)
print(array.index([0,0]))

numpy.delete()删除过索引的对象后返回的是ndarray,而不是list,所以不能使用index查找元素的位置。

二、转化成列表tolist
list_a = [1, 2, 1, 3, 1, 5, 1, 7, 1, 5, 9]
list_cu = np.maximum.accumulate(list_a)
print(list_cu)
indexs_ = list_cu.tolist()[0]
print(indexs_)
list_ = (list_cu - list_a)/list_cu
print(list_[:])
index = np.argmax(list_[:])
print(index)
三、数组(特定轴)的累积最大值
import numpy as np

d = np.array([2, 0, 3, -4, -2, 7, 9])
c = np.maximum.accumulate(d)
print(c)   
# array([2, 2, 3, 3, 3, 7, 9])

def MaxDrawdown(return_list):
    # 结束位置
    i = np.argmax((np.maximum.accumulate(return_list) - return_list) /         
                   np.maximum.accumulate(return_list))  
    if i == 0:
        return 0
    j = np.argmax(return_list[:i])  # 开始位置
    return (return_list[j] - return_list[i]) / (return_list[j])
四、参考

np.maximum.accumulate用法 - CSDN

numpy 计算最大回撤 | Waiting For You (waitingfy.com)

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/727306.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-26
下一篇 2022-04-26

发表评论

登录后才能评论

评论列表(0条)

保存