Sunday, December 27, 2020

Python Pool: WHAT IS NUMPY CHOOSE()? EXPLAINED IN DETAIL

Hello geeks and welcome in this article, we will cover NumPy.choose(). Along with that, for an overall better understanding, we will look at its syntax and parameter. Then we will see the application of all the theory part through a couple of examples. But at first, let us try to get a brief understanding of the function through its definition. Suppose you have multiple arrays grouped under a single array, and you want to get values from them collectively at once. In such cases the function NumPy.choose() comes handy. Up next, we will see the parameter associated with it, and followed by which we will look at the different parameters.

SYNTAX OF NUMPY.CHOOSE()

np.choose(a,c) == np.array(][I] ])

Above, we can see the general syntax of our function. It may seem a bit complicated at first sight. But worry not. We will be discussing each of the parameters associated with it in detail.

PARAMETER OF NUMPY.CHOOSE()

a: int array

This array must contain numbers between 0 to n-1. Here n represents the number of choices unless a mode(an optional parameter) is associated with it.

choices: a sequence of array

 “a” and all of the choices must be broadcastable to the same shape. If choices are itself an array, then its outermost dimension is taken as defining the “sequence”.

out: array

It is an optional parameter. If it is declared the output will be inserted in the pre-existing array. It should be of appropriate d-type and shape.

mode:{raise(defalut), wrap,clip}

It is an optional parameter. The function of this parameter is to decide how index numbers outside[0,n-1] will be treated. It has 3 conditions associated with it, which are:

“raise”: In this case an exception is raised.

wrap”: In this case the value becomes value |N|

“clip”: In this case value <0 are mapped to 0, values >n-1 are mapped to n-1.

RETURN

merged array: array

This function returns a merged array as output.

NOTE:

If a and each choice array are not broadcastable to the same shape then in that case “VALUE ERROR” is displayed.

EXAMPLES

We have covered the syntax and parameters of NumPy.choose() in detail. Now let us see them in action through different examples. These examples will help us in understanding the topic better. We will start with an elementary level and then look at various variations.

#input
import numpy as ppool
a=[[1,23,3,6],[3,5,6,9]]
print(ppool.choose([1,0,1,0],a))

Output:

[ 3 23  6  6]

In the above example, we have first imported the NumPy module. Then we have declared an array. After which, we have used our general syntax and a print statement to get the desired result. The output here justifies our input. We can understand it as follows: we have declared our choices as [1,0,1,0]. This means that the first component of our element will be the 1st element of sub-array number 2. Then, the second element will be the second element of array number 1. Next term will 3rd element of array number sub-array number 2, and the last element will be the 4th element of sub-array 2.

Let us look at another example

#input
import numpy as ppool
a=[[1,23,3],[3,5,6],[45,78,90]]
print(ppool.choose([1,2,0],a))

Output:

[ 3 78  3]

Again in this example, we have followed a similar procedure as in the above example. Here we have 3 sub-array instead of 2 and 3 choices instead of 4. The reason behind this is that we have 3 elements in the array. If we declare 4 choices, then there would be no 4th term to fill its space, and all we would get is an error. That’s something everyone should take care of while dealing working with this function.

MUST READ

Understanding Python Bubble Sort with examples
NUMPY POLYFIT EXPLAINED WITH EXAMPLES
Numpy Determinant | What is NumPy.linalg.det()
What is Numpy log in Python?
METHODS TO CONVERT TUPLE TO STRING IN PYTHON

CONCLUSION

In this article, we have covered the NumPy.choose(). Besides that, we have also looked at its syntax and parameters. For better understanding, we looked at a couple of examples. We varied the syntax and looked at the output for each case. In the end, we can conclude that Numpy. choose() helps us getting elements from the different sub-arrays at once. I hope this article was able to clear all doubts. But in case you have any unsolved queries feel free to write them below in the comment section. Done reading this, why not read fliplr next.

The post WHAT IS NUMPY CHOOSE()? EXPLAINED IN DETAIL appeared first on Python Pool.



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...