Guest User

Untitled

a guest
Jul 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. import numpy as np
  2. x = [10, 20, 30, 40]
  3. y = [3, 5, 10, 11]
  4. np.corrcoef(x,y)[0][1]
  5. x = [1, 2, 3, 4]
  6. np.corrcoef(x,y)[0][1]
Add Comment
Please, Sign In to add comment