Advertisement
KodingKid

Quest to Learn and Master AI in Python - Script #1

Dec 17th, 2021
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. import numpy as np
  2. import sklearn.preprocessing
  3. height_data = np.array([183, 201, 192], #this is in cm btw
  4.                        [127, 126, 143],
  5.                        [234, 188, 200],
  6.                        [122, 144, 177])
  7. print("Mean = ", height_data.mean(axis = 0))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement