Numpy Sort Array по другим массивам

order = arr1.argsort()
sorted_arr1 = arr1[order]
sorted_arr2 = arr2[order]
Uptight Unicorn