首页 > 代码库 > Statistics and Linear Algebra 4
Statistics and Linear Algebra 4
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。