In this article, we will explore how to use the random.randn() function in NumPy to generate sample arrays.
np.random.randn() Function
The randn() function takes the dimensions of an array as the arguments and returns a float value or a multidimensional array of the specified shape.
As mentioned, the function returns samples from the standard normal distribution.
The standard normal distribution is a special type of normal distribution where the mean is 0 and has a standard deviation value of 1.
A normal distribution is a symmetrical distribution where the data plotted on a graph forms a bell-like shape. Most of the data clusters around a central point in a normal distribution and taper off as they go farther from the main point.
The randn() function in NumPy has a syntax as shown below:
Where the d0, d1, …, dn refers to an optional int type parameter that dictates the returned array’s dimensions. Ensure the values of the d* parameters are non-negative integers.
NOTE: If no argument is provided, the function returns a single floating-point value.
Generate Random Float Using np.random.randn()
To generate a random float using the randn() function, start by importing NumPy, as shown below:
import numpy as np
To generate a random float, call the randn() function with no arguments, as shown below:
print(np.random.randn())
print(np.random.randn())
print(np.random.randn())
The previous code should generate random integers and return the values, as shown below:
Create 1D Array Using the randn() Function
We can create a 1-dimensional array using the randn function by specifying one value for the dimension parameter.
An example is shown below:
arr = np.random.randn(5)
display(arr)
The previous code should generate a 1D array with five elements as shown below:
Create 2D Array Using the randn() Function
To create a 2D array using the randn() function, we can specify two values to represent the array dimensions.
Consider the code, as shown below:
arr = np.random.randn(2,3)
display(arr)
This should return a 2-dimensional array of 2 rows and 3 columns. An example output is shown below:
[ 1.06720002, 0.90974257, 0.48808603]])
NOTE: The parameters in randn(2,3) represent rows and columns, respectively.
Create 3D Array Using the randn() Function
To create a 3D array using the randn() function, we can do the following:
display(arr)
This should return a 3D array of random values as shown:
[-1.3227269 , 0.96494486]],
[[ 0.14853023, 1.72551442],
[ 0.23563147, -1.55067172]]])
Reshaping an Array
After generating a random array, we can use the array.reshape() function to reshape the array into our desired format.
Consider the example below:
arr = np.random.randn(4,6)
In the previous example, we generate a 2D array using the randn() function.
To reshape the array into an 8,3 shape, we can do the following:
This should return:
Conclusion
In this tutorial, we learned how to use the np.random.randn function to generate 1, 2, and 3-dimensional arrays populated with sample values per Gaussian distribution. Thanks for reading this article, and happy coding.