1.Generate normal distribution data of Size 2 × 3
from numpy import random
x = random.normal(size=(2, 3))
2. Generate normal distribution with mean 250 and standard deviation 10
from numpy import random
x = random.normal(loc=250, scale=10, size=(2, 3))
No comments:
Post a Comment