Python - 数据科学之线性回归
-
简述
在线性回归中,这两个变量通过一个方程相关联,其中这两个变量的指数(幂)均为 1。从数学上讲,线性关系在绘制为图形时表示一条直线。任何变量的指数不等于 1 的非线性关系会创建一条曲线。Seaborn 中查找线性回归关系的函数是 regplot。下面的例子展示了它的用法。import seaborn as sb from matplotlib import pyplot as plt df = sb.load_dataset('tips') sb.regplot(x = "total_bill", y = "tip", data = df) plt.show()
它的output如下 -