前端之家收集整理的这篇文章主要介绍了
是否有更多的pythonic方法来编写只更新变量的while循环?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个while循环,我想知道它们是否是一种更加
pythonic的方式来编写它:
k = 1
while np.sum(s[0:k]) / s_sum < retained_variance:
k += 1
@H_
403_4@s是一个numpy向量.谢谢!
可能不是最有效的
解决方案,但如果需要
搜索大多数阵列,则速度很快:
import numpy as np
ss = np.cumsum(s) # array with cumulative sum
k = ss.searchsorted(retained_variance*s_sum) # exploit that ss is monotonically increasing
@H_
403_4@编辑:西蒙指出
k = np.cumsum(s).searchsorted(retained_variance*s_sum) + 1
@H_
403_4@是与问题对应的值.
原文链接:https://www.f2er.com/python/185688.html