Implement ndarray array in numpy to return index method that meets specific conditions

不言
Release: 2018-04-17 10:46:57
Original
5450 people have browsed it

The following is an article in numpy that implements an ndarray array to return an index that meets specific conditions. It has a good reference value and I hope it will be helpful to everyone. Let’s take a look together

In the ndarray type of numpy, there seems to be no method to directly return a specific index. I only found the where function, but the where function is very useful for finding the index corresponding to a specific value. For Returning an index of values ​​within a certain range is not very efficient, at least I don't understand how to do it. Let’s first talk about the usage of where function.

(1) Usage scenarios of where function:

For example, now I generated an array:

import numpy as np 
arr=np.array([1,1,1,134,45,3,46,45,65,3,23424,234,12,12,3,546,1,2])
Copy after login

Now arr is an ndarray type array containing 18 elements. Let’s call it an array later. If I want to return the index position corresponding to all elements in the array with a value of 3, this can be easily accomplished through the where function.

print np.where(arr==3)
Copy after login

It will return a tuple containing all index positions corresponding to a value of 3, as shown below:

You can see that the corresponding element value at indexes 5, 9, and 14 is 3. This way you can easily achieve your goal. But this won't work for indexes within a certain range of changes. The following method is a compromise that I came up with. It is relatively stupid, but the master can clear it up.

(2) Solve the search for value index within a certain range through an auxiliary array

We build an array that identifies the element index, Then use it to display the index corresponding to the element that meets the conditions. It's still the same array, if I now want to return the index of the element value between 3 and 100. I can generate an array with the same size as arr, and then first filter it once to find the array corresponding to the index of the element greater than 3, and then filter it again, and finally get the desired result. The code is as follows:

b=np.arange(len(arr))#生成和arr相同长度的数组
Copy after login

c=b[arr>3]#c存放的就是arr中大于3的元素对应的索引 
#最后通过遍历c数组,选择3到100之间的值打印出来 
for i in range(len(c)): 
 if arr[c[i]]<100: 
  print c[i],
Copy after login

Let’s take a look at the execution effect:

You can see that the program prints out the index values ​​corresponding to all elements between 3 and 100. If you want to get the index value and the corresponding element at the same time, just enter The above "print c[i]" can be replaced with "print c[i],arr[c[i]]".

Of course, this method is also suitable for selecting the index corresponding to a specific value. For example, if I want to find all positions corresponding to 3, I can use print b[arr==3] to print out all values ​​​​that are 3. The index corresponding to the element. In fact, no matter how you do it, you use an array to perform relational operations to generate a Boolean array, and then display the areas that are True in the array.

Of course, you can also filter twice to filter out the index arrays corresponding to elements greater than 3 and elements less than 100, and then perform intersection processing on the two arrays. There is an intersect1d function in numpy that can do this operation, but it is still troublesome. I can only think of these methods at present. I don’t know if any expert has a better method. Everyone is welcome to share it.

Related recommendations:

Related recommendations:

How to view numpy array attributes in python3 library

How to convert numpy and array in python


The above is the detailed content of Implement ndarray array in numpy to return index method that meets specific conditions. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!