我目前正在研究坐標,不知何故,我需要在不觸及 y 坐標的情況下按升序對具有相同 y 坐標的 x 坐標進行排序。
這是示例輸入:
x = [213,212,213,214,215,216,215,216,217,216,218,217,219,220,219]
y = [352,333,332,330,328,327,327,326,325,325,324,324,323,322,322]
xy = np.array([x,y])
這是所需的輸出:
x = [213,212,213,214,215,215,216,216,216,217,217,218,219,219,220]
y = [352,333,332,330,328,327,327,326,325,325,324,324,323,322,322]
注意:我一直在尋找這個,但似乎找不到直接的答案。謝謝你。
uj5u.com熱心網友回復:
您可以首先制作一個配對串列并按第一個坐標對其進行排序,然后將其制成一個 numpy 陣列
>>> x = [213,212,213,214,215,216,215,216,217,216,218,217,219,220,219]
>>> y = [352,333,332,330,328,327,327,326,325,325,324,324,323,322,322]
>>> xy=sorted(zip(x,y),key=lambda pair:pair[0])
>>> xy
[(212, 333), (213, 352), (213, 332), (214, 330), (215, 328), (215, 327), (216, 327), (216, 326), (216, 325), (217, 325), (217, 324), (218, 324), (219, 323), (219, 322), (220, 322)]
>>> nxy = np.array(xy).T
>>> nxy
array([[212, 213, 213, 214, 215, 215, 216, 216, 216, 217, 217, 218, 219,
219, 220],
[333, 352, 332, 330, 328, 327, 327, 326, 325, 325, 324, 324, 323,
322, 322]])
>>> nxy
array([[212, 213, 213, 214, 215, 215, 216, 216, 216, 217, 217, 218, 219,
219, 220],
[333, 352, 332, 330, 328, 327, 327, 326, 325, 325, 324, 324, 323,
322, 322]])
>>>
經過一些好的舊試驗和錯誤后,找到一種在 numpy 中對它們進行排序的方法
>>> x = [0, 500, 100, 300, 200, 800, 400, 600, 700, 900]
>>> y = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> xy= np.array([x,y])
>>> xy
array([[ 0, 500, 100, 300, 200, 800, 400, 600, 700, 900],
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9]])
>>> np.argsort(xy[0]) #get an array with the index that correspond to the elements in a sorted fashion
array([0, 2, 4, 3, 6, 1, 7, 8, 5, 9], dtype=int64)
>>> xy[:,np.argsort(xy[0])] #ask for the elements in the aforementioned order, while preserving their pairing
array([[ 0, 100, 200, 300, 400, 500, 600, 700, 800, 900],
[ 0, 2, 4, 3, 6, 1, 7, 8, 5, 9]])
>>>
轉載請註明出處,本文鏈接:https://www.uj5u.com/qukuanlian/487393.html
上一篇:Python從嵌套字典追加到串列
