ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

Useful NumPy functions: Reshape, Argpartition, Clip, Extract, Setdiff1d

2019-10-24 11:03:38  阅读:350  来源: 互联网

标签:functions Useful Clip reshape shape values np array Numpy


In everyday data processing for Machine Learning and Data Science projects, we encounter unique situations, those require boilerplate code to solve the problem. Over the period some of those are converted into base features provided by the core language or the package itself as per need and usage from the community. Here I am sharing 5 elegant python Numpy functions, which can be used for efficient and neat data manipulation.

1) Use of -1 in Reshape

Numpy allows us to reshape a matrix provided new shape should be compatible with the original shape. One interesting aspect of this new shape is, we can give one of the shape parameter as -1. It simply means that it is an unknown dimension and we want Numpy to figure it out. Numpy will figure this by looking at the ‘length of the array and remaining dimensions’ and making sure it satisfies the above mentioned criteria. Let's see one example now.

Pictorial representation of different reshape with one dimension as -1

a = np.array([[1, 2, 3, 4],
              [5, 6, 7, 8]])
a.shape
(2, 4)

Suppose we give row as 1 and -1 as column then Numpy will able to find column as 8.

a.reshape(1,-1)
array([[1, 2, 3, 4, 5, 6, 7, 8]])

Suppose we give row as -1 and 1 as column then Numpy will able to find row as 8.

a.reshape(-1,1)
array([[1],
       [2],
       [3],
       [4],
       [5],
       [6],
       [7],
       [8]])

Similarly below are possible.

a.reshape(-1,4)
array([[1, 2, 3, 4],
       [5, 6, 7, 8]])a.reshape(-1,2)
array([[1, 2],
       [3, 4],
       [5, 6],
       [7, 8]])a.reshape(2,-1)
array([[1, 2, 3, 4],
       [5, 6, 7, 8]])a.reshape(4,-1)
array([[1, 2],
       [3, 4],
       [5, 6],
       [7, 8]])

This is also applicable to any higher level tensor reshape as well but only one dimension can be given -1.

a.reshape(2,2,-1)
array([[[1, 2],
        [3, 4]],

       [[5, 6],
        [7, 8]]])a.reshape(2,-1,1)
array([[[1],
        [2],
        [3],
        [4]],

       [[5],
        [6],
        [7],
        [8]]])

If we try to reshape a non-compatible shape or more than one unknown shape then there will be an error message.

a.reshape(-1,-1)
ValueError: can only specify one unknown dimensiona.reshape(3,-1)
ValueError: cannot reshape array of size 8 into shape (3,newaxis)

To summarize, when reshaping an array, the new shape must contain the same number of elements as the old shape, meaning the products of the two shapes’ dimensions must be equal. When using a -1, the dimension corresponding to the -1 will be the product of the dimensions of the original array divided by the product of the dimensions given to reshape so as to maintain the same number of elements.

2) Argpartition : Find N maximum values in an array

Numpy has a function called argpartition which can efficiently find largest of N values index and in-turn N values. It gives index and then you can sort if you need sorted values.

array = np.array([10, 7, 4, 3, 2, 2, 5, 9, 0, 4, 6, 0])index = np.argpartition(array, -5)[-5:]
index
array([ 6,  1, 10,  7,  0], dtype=int64)np.sort(array[index])
array([ 5,  6,  7,  9, 10])

3) Clip : How to keep values in an array within an interval

In many data problem or algorithm (like PPO in Reinforcement Learning) we need to keep all values within an upper and lower limit. Numpy has a built in function called Clip that can be used for such purpose. Numpy clip() function is used to Clip (limit) the values in an array. Given an interval, values outside the interval are clipped to the interval edges. For example, if an interval of [-1, 1] is specified, values smaller than -1 become -1, and values larger than 1 become 1.

Clip example with min value 2 and maximum value 6

#Example-1
array = np.array([10, 7, 4, 3, 2, 2, 5, 9, 0, 4, 6, 0])
print (np.clip(array,2,6))[6 6 4 3 2 2 5 6 2 4 6 2]#Example-2
array = np.array([10, -1, 4, -3, 2, 2, 5, 9, 0, 4, 6, 0])
print (np.clip(array,2,5))[5 2 4 2 2 2 5 5 2 4 5 2]

4) Extract: To extract specific elements from an array based on condition

We can use Numpy extract() function to extract specific elements from an array that matches the condition.

arr = np.arange(10)
arrarray([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])# Define the codition, here we take MOD 3 if zero
condition = np.mod(arr, 3)==0
conditionarray([ True, False, False,  True, False, False,  True, False, False,True])np.extract(condition, arr)
array([0, 3, 6, 9])

Similarly, we can use direct condition with combination of AND and OR if required like

np.extract(((arr > 2) & (arr < 8)), arr)array([3, 4, 5, 6, 7])

5) setdiff1d : How to find unique values in an array compared to another

Return the unique values in an array that are not in present in another array. This is equivalent to set difference of two arrays.

a = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9])
b = np.array([3,4,7,6,7,8,11,12,14])
c = np.setdiff1d(a,b)
carray([1, 2, 5, 9])

Final Note :

These are 5 Numpy functions which are not used frequently by the community but they are neat and elegant. In my view, we should use them whenever there is similar situation as these provide not just less code but mostly smart way of achieving a solution for a complex problem.

      来源: https://towardsdatascience.com/5-smart-python-numpy-functions-dfd1072d2cb4

来自为知笔记(Wiz)



标签:functions,Useful,Clip,reshape,shape,values,np,array,Numpy
来源: https://www.cnblogs.com/jins-note/p/11730948.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有