Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

numpy delete

import numpy as np

arr = np.array([1, 2, 1, 2,  3, 4, 5, 4, 6, 7])
# create a set array with no duplicates
arr = np.unique(arr)
print(arr)
# [1 2 3 4 5 6 7]

arr1 = np.array([1, 2, 3, 4])
arr2 = np.array([3, 4, 5, 6])

# create a 1d set array without from both arrays removing duplicates
arr = np.union1d(arr1, arr2)
print(arr)
# output [1 2 3 4 5 6]

arr1 = np.array([1, 2, 3, 4])
arr2 = np.array([3, 4, 5, 6])

# create a 1d set array where both numbers are found in both arrays
arr = np.intersect1d(arr1, arr2, assume_unique=True)
print(arr)
# output [3 4]

arr1 = np.array([1, 2, 3, 4])
arr2 = np.array([3, 4, 5, 6])

# create a 1d set array that contained only numbers found in the first array but not the second
arr = np.setdiff1d(arr1, arr2, assume_unique=True)
print(arr)
# output [1 2]

arr1 = np.array([1, 2, 3, 4])
arr2 = np.array([3, 4, 5, 6])

# create a 1d set array where numbers from both arrays are not in each other
arr = np.setxor1d(arr1, arr2, assume_unique=True)

print(arr)
# output [1 2 5 6]

Comment

Python NumPy delete Function Syntax

numpy.delete(array, object, axis = None)
Comment

Python NumPy delete Function Example

# welcome to softhunt.net
# Python Program illustrating
# numpy.delete()

import numpy as np

#Working on 1D
arr = np.arange(12).reshape(3, 4)
print("arr : 
", arr)
print("Shape : ", arr.shape)

# deletion from 2D array
a = np.delete(arr, 1, 0)
'''
		[[ 0 1 2 3]
		[ 4 5 6 7] -> deleted
		[ 8 9 10 11]]
'''
print("
deleteing arr 2 times : 
", a)
print("Shape : ", a.shape)

# deletion from 2D array
a = np.delete(arr, 1, 1)
'''
		[[ 0 1* 2 3]
		[ 4 5* 6 7]
		[ 8 9* 10 11]]
			^
			Deletion
'''
print("
deleteing arr 2 times : 
", a)
print("Shape : ", a.shape)
Comment

PREVIOUS NEXT
Code Example
Python :: convert date to string in python 
Python :: python environment variable 
Python :: Python NumPy split Function Syntax 
Python :: random forest algorithm 
Python :: nlp spacy medium 
Python :: js choice function 
Python :: what does abs do in python 
Python :: youtube mp3 downloader python 
Python :: models django 
Python :: Yield Expressions in python 
Python :: fastest way to iterate dictionary python 
Python :: data encapsulation in python 
Python :: django for beginners 
Python :: idxmax in python 
Python :: python list clear vs del 
Python :: generator expression 
Python :: python get item from set 
Python :: Python NumPy concatenate Function Syntax 
Python :: floor function in python 
Python :: python lenght 
Python :: python get file size 
Python :: tuple python 
Python :: del(list) python 
Python :: .pop python 
Python :: full body tracking module 
Python :: python assertEqual tuple list 
Python :: reverse sublist of linklist 
Python :: Multiple page PyQt QStackedWidget 
Python :: typing return two objects 
Python :: ublox kismet 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =