I have 2 arrays.

 a1 = [1,2,4]
 a2 = [3,4,5]

how would I find the correlation between these 2 arrays using python.

In matlab, you would do:

corr(a1,a2)

How to do this in python?

有帮助吗?

解决方案

You need numpy.corrcoef:

In [8]:

np.corrcoef(a1,a2)
Out[8]:
array([[ 1.        ,  0.98198051],
       [ 0.98198051,  1.        ]])
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top