NumPy

NumPy Set Operations to know!

Hello, readers! In this article, we will learn the universal NumPy Set Operations in Python. So, let us get started! 🙂 Useful Numpy set operations We’re going over 5 useful numpy set operations in this article. numpy.unique(array) numpy.union1d(array,array) numpy.intersect1d(array,array,assume_unique) np.setdiff1d(arr1, arr2, assume_unique=True) np.setxor1d(arr1, arr2, assume_unique=True) Let’s check these operations individually. 1. Unique values from a …

NumPy Set Operations to know! Read More »

Numpy Vectorization

In this article, we’ll learn Numpy Vectorization in Python. Numpy is a C implementation of arrays in Python that is comparatively faster while having the same Python interpreter. In this article, we explore how we can apply a function element-wise to a sequence using numpy.vectorize(). Why for loop isn’t best for Numpy Vectorization? To apply …

Numpy Vectorization Read More »

NumPy Universal functions to know!

Hello, readers! In this article, we will be focusing on NumPy Universal functions in Python programming. So, let us get started! 🙂 What do we mean by NumPy Universal Functions? NumPy Universal functions are in actual the mathematical functions. The NumPy mathematical functions in NumPy are framed as Universal functions. These Universal (mathematical NumPy functions) …

NumPy Universal functions to know! Read More »

How to Save in .npy Format?

Ever come across a .npy file? In this article, we’ll go over the steps to save in npy format. NPY is Numpy’s binary data storage format. Numpy is an essential module for carrying out data science operations efficiently. Importing, saving and processing of data takes up a major portion of the time in the field …

How to Save in .npy Format? Read More »