Skip to content

Instantly share code, notes, and snippets.

@selva86
Created June 16, 2021 08:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save selva86/0e7cc57985ff5e3e05cdd3a58189dfe7 to your computer and use it in GitHub Desktop.
Save selva86/0e7cc57985ff5e3e05cdd3a58189dfe7 to your computer and use it in GitHub Desktop.
import numpy as np
# turn off scientific (e+02) notations.
np.set_printoptions(suppress=True)
# Create normal
np.random.seed(100)
arr = np.random.normal(100, 75, size=300).round(3)
arr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment