Question: Given two vectors A and B, find the correlation coefficient of the following vectors. A = numpy.array([1,3,5,7,9,11,13,15,17,19,21,23,25]) B = numpy.array([0,2,4,6,8,10,12,14,16,18,20, 22, 24]) array([[1., 1.],[1., 1.]])
Given two vectors A and B, find the correlation coefficient of the following vectors. A = numpy.array([1,3,5,7,9,11,13,15,17,19,21,23,25]) B = numpy.array([0,2,4,6,8,10,12,14,16,18,20, 22, 24]) array([[1., 1.],[1., 1.]]) array([[0., 1.],[1., 1.]]) array([[1., 1.],[0., 1.]]) array([[1., 0.],[1., 1.]])
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
