np.random python code example
Example 1: numpy generate random 2d array
import numpy as np
a=np.random.rand(3,3)
print(a)
Example 2: np.random.rand()
# train test split
df = pd.read_csv('file_location')
mask = np.random.rand(len(df)) < 0.8
train = df[mask]
test = df[~mask]
Example 3: numpy random in python
import numpy as np
a=np.random.rand(5,2)
print(a)