线性回归图
2021-8-16
| 2023-8-6
0  |  阅读时长 0 分钟
type
status
date
slug
summary
tags
category
icon
password
Property
 
线性回归图可以帮助我们看到数据的关系趋势。在seaborn中可以通过regplotlmplot两个函数来实现。regplotxy可以为Numpy数组Series等变量。而lmplotxy则必须为字符串,并且data的值不能为空:
  1. regplot(x,y,data=None)
  1. lmplot(x,y,data)
notion image
 
也可以通过regplot来实现:
notion image
  • Seaborn
  • 分布绘图矩阵图
    目录