码迷,mamicode.com
首页 > 其他好文 > 详细

Statistics and Linear Algebra 4

时间:2016-12-02 07:58:34      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:density   numpy   import   rom   each   value   column   win   divide   

1.The way to calculate the slope: the covariance of x and y divided by the variance of x

  from numpy import cov
  slope_density = cov(wine_quality["quality"],wine_quality["density"])[0,1]/wine_quality["density"].var() #cov(x,y) is the function from numpy, which returns a 2*2 metric,.var() is pandas function.

2.To get the intercept: b = y - ax( x and y are the mean value of each column)

  intercept_density = wine_quality["quality"].mean() - wine_quality["density"].mean() * (calc_slope(wine_quality["density"],wine_quality["quality"])) 

Statistics and Linear Algebra 4

标签:density   numpy   import   rom   each   value   column   win   divide   

原文地址:http://www.cnblogs.com/kingoscar/p/6124330.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!