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]
# 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)