Pergunta

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?

Foi útil?

Solução

You need numpy.corrcoef:

In [8]:

np.corrcoef(a1,a2)
Out[8]:
array([[ 1.        ,  0.98198051],
       [ 0.98198051,  1.        ]])
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top