Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

数据科学 - 回归表


回归表

线性回归的结果可以总结在回归表中。

表格内容包括

  • 模型信息
  • 线性回归函数的系数
  • 回归统计量
  • 线性回归函数系数的统计量
  • 其他我们本模块不涵盖的信息

以Average_Pulse为解释变量的回归表

Linear Regression Table

你现在可以开始你的高级输出分析之旅了!


在Python中创建线性回归表

以下是如何在Python中创建线性回归表的方法

示例

import pandas as pd
import statsmodels.formula.api as smf

full_health_data = pd.read_csv("data.csv", header=0, sep=",")

model = smf.ols('Calorie_Burnage ~ Average_Pulse', data = full_health_data)
results = model.fit()
print(results.summary())
自己试试 »

示例说明

  • 导入库statsmodels.formula.api为smf。Statsmodels是Python中的一个统计库。
  • 使用full_health_data数据集。
  • 使用smf.ols()基于普通最小二乘法创建模型。注意,解释变量必须写在括号中的第一个位置。使用full_health_data数据集。
  • 通过调用.fit(),你获得了变量results。它包含了关于回归模型的大量信息。
  • 调用summary()获取包含线性回归结果的表格。

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.