How to Randomly permute Numpy Array

In this post, we will learn how to permute or randomize a 1D array and 2D Numpy Array using Numpy. We will use Numpy’s Random Generator class to create generator object with default_rng() and use permutaion() function on the object to permute. Let us get started by importing Numpy. The basic syntax of Numpy’s permutation… Continue reading How to Randomly permute Numpy Array