Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

numpy sort

import numpy as np

arr = np.array([3, 2, 0, 1])
print(np.sort(arr))
# output [0 1 2 3]

arr = np.array(['banana', 'cherry', 'apple'])
print(np.sort(arr))
# output ['apple' 'banana' 'cherry']

arr = np.array([True, False, True])
print(np.sort(arr))
# output [False  True  True]

arr = np.array([[3, 2, 4], [5, 0, 1]])
print(np.sort(arr))
# output
# [[2 3 4]
#  [0 1 5]]
Comment

numpy sort

>>> a = np.array([[1,4],[3,1]])
>>> np.sort(a)                # sort along the last axis
array([[1, 4],
       [1, 3]])
>>> np.sort(a, axis=None)     # sort the flattened array
array([1, 1, 3, 4])
>>> np.sort(a, axis=0)        # sort along the first axis
array([[1, 1],
       [3, 4]])
Comment

numpy array sorting

a = np.array([[1,4],[3,1]])
>>> np.sort(a)                # sort along the last axis
array([[1, 4],
       [1, 3]])
>>> np.sort(a, axis=None)     # sort the flattened array
array([1, 1, 3, 4])
>>> np.sort(a, axis=0)        # sort along the first axis
array([[1, 1],
       [3, 4]])
Comment

How to sort numpy array

np.sort(arr)
array([1, 2, 3, 4, 5, 6, 7, 8])
Comment

numpy.sort

a = np.array([[1,4], [3,1]])
>>> a.sort(axis=1)
>>> a
array([[1, 4],
       [1, 3]])
>>> a.sort(axis=0)
>>> a
array([[1, 3],
       [1, 4]])
Comment

How to sort numpy array

arr=[1,4,2,6,3,5,8,7]
np.sort(arr)
array([1, 2, 3, 4, 5, 6, 7, 8])
Comment

Sort array numpy


arr = np.array([2, 1, 5, 3, 7, 4, 6, 8])
np.sort(arr)
Comment

PREVIOUS NEXT
Code Example
Python :: machine learning python 
Python :: most popular python libraries 
Python :: python run curl 
Python :: read multiple images cv2 
Python :: c++ call python function 
Python :: unique combinations in python 
Python :: give columns while reading csv 
Python :: list to dict python with same values 
Python :: rps python 
Python :: bringing last column to first: Pandas 
Python :: find charechtar index in string python 
Python :: python beginner projects 
Python :: python list pop multiple 
Python :: read .mat file in python 
Python :: how to create superuser in django heroku 
Python :: python script restart 
Python :: make sns heatmap colorbar larger 
Python :: how to get value from set in python 
Python :: python .nlargest 
Python :: django annotate vs aggregate 
Python :: spotify api python 
Python :: python print n numbers 
Python :: how to split a string with newline in python 
Python :: python for loop in array 
Python :: how to empty a dictionary in python 
Python :: check if variable is function python 
Python :: how to check for empty dataframe 
Python :: how to copy file from local to sftp using python 
Python :: python raise exception 
Python :: django serve media folder 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =