4
A
回答
5
在numpy的有一個名爲argsort
import numpy as np
lst = [10,2,-1,20]
np.argsort(lst)
# array([2, 1, 0, 3])
注意,Python列表索引從0開始的R.
從1開始的,而功能
2
import numpy
a = numpy.array([10,2,-1, 20])
a.argsort()
# array([2, 1, 0, 3])
,如果你想探索decreasing = T
選項。你可以試試,
(-a).argsort()
#array([3, 0, 1, 2])
相關問題
- 1. numpy.memmap(Python)在R中等價嗎?
- 2. R中的Python「json.dumps()」的等價物?
- 3. Python的等價於R的logspace_add函數?
- 4. Python的plotly.tools.FigureFactory.create_scatterplotmatrix的R等價物?
- 5. 在類別中計算:在Python中R的ddply等價嗎?
- 6. R的匹配python等價()索引
- 7. R的h2o.stack是否有python等價物?
- 8. 等價於R中的normxcorr2?
- 9. 訂單在Python評價不明確
- 10. 訂單r中
- 11. R/ifelse在Python/Pandas中的等價物?比較字符串列?
- 12. 在R中有沒有python等價的get_map函數?
- 13. 在Python中,R的「phyper」函數等價於什麼?
- 14. fromCharCode()等價於R
- 15. 訂單評價測試布爾的等價時
- 16. Python中的等價命令
- 17. python中的字符等價
- 18. python中的元組等價
- 19. Python中的inject()等價嗎?
- 20. 在Python中,什麼C++等價於'r'前綴字符串?
- 21. 等價的訂單按HBase中的操作
- 22. Python的等價物@
- 23. Python的等價性?
- 24. 訂單數據中的R
- 25. 從R到Python,什麼是數據框的python等價物?
- 26. python中R data.chisq $ residuals的等價物是什麼?
- 27. Matlab imfilter在Python中的等價函數
- 28. Ruby的watchr在Python中等價嗎?
- 29. 在C#中的默認Python等價物#
- 30. 在Python中set -o pipefail的等價物?