作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我想使用以下代码从 Pandas 数据帧生成散点图:
df.plot.scatter(x='one', y='two, title='Scatterplot')
是否有我可以随语句发送的参数,以便它绘制回归线并显示拟合参数?
类似于:
df.plot.scatter(x='one', y='two', title='Scatterplot', Regression_line)
最佳答案
我认为 DataFrame.plot() 没有这样的参数。但是,您可以使用 Seaborn 轻松实现此目的.只需将 Pandas 数据框传递给 lmplot (假设你已经安装了 seaborn):
import seaborn as sns
sns.lmplot(x='one',y='two',data=df,fit_reg=True)
关于python - 我可以使用带有 pandas 数据框的散点图绘制回归线并显示参数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36420908/
我是一名优秀的程序员,十分优秀!