摘要: 代码: 1 # -*- coding:utf-8 -*- 2 3 import numpy as np 4 import math 5 6 7 # 相关度 8 def computeCorrelation(X, Y): 9 xBar = np.mean(X) 10 yBar = np.mean(Y) 阅读全文
posted @ 2020-03-30 00:13 博二爷 阅读(662) 评论(0) 推荐(0) 编辑