λ
摘要: 线性回归from scipy import statsimport numpy as npx = np.random.random(10)y = np.random.random(10)slope, intercept, r_value, p_value, std_err = stats.linregress(x,y)# slope 斜率# intercept 截距 阅读全文
posted @ 2013-08-30 19:18 maxc01 阅读(255) 评论(0) 推荐(0)