Advertisement
KodingKid

Basic Python Machine Learning

Apr 17th, 2021
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. import numpy
  2. import matplotlib.pyplot as plt
  3. x = numpy.random.normal(10.0, 2.0, 2000000)
  4. plt.hist(x, 200)
  5. plt.show()
  6. #This creates a graph sorted and made by machine learning
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement