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 :: torch.utils.data.random_split(dataset, lengths) 
Python :: Accessing elements from a Python Dictionary using the get method 
Python :: python remove character from string 
Python :: python iterating through a list 
Python :: selecting a specific value and corrersponding value in df python 
Python :: how to add element to list python 
Python :: Example of floor method in python 
Python :: python map 
Python :: run ansible playbook python 
Python :: python 2d array 
Python :: login required 
Python :: numpy datatime object 
Python :: plotly change legend name 
Python :: imshow of matplotlib 
Python :: celery periodic tasks 
Python :: python in intellij 
Python :: python string: .upper() 
Python :: np.transpose(x) array([[0, 2], [1, 3]]) 
Python :: pybase64 
Python :: add Elements to Python list Using append() method 
Python :: python pandas sum of series 
Python :: python error 
Python :: oops python 
Python :: np.divide 
Python :: create a virtual environment python 3 
Python :: python 3 string length 
Python :: python3 
Python :: deactivate pandas warning copy 
Python :: display list 
Python :: Python - Comment supprimer Commas de la corde 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =