Create a Linear Regression Table using Average Pulse and Duration as explanatory variables.
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 + Duration’, data = full_health_data) results = model.fit() print(results.summary()) |
Example Explained:
The linear regression function can be expressed mathematically as:
Calorie Burnage = Average Pulse * 3.1695 + Duration * 5.8424 – 334.5194 |
Rounded to two decimal places:
Calorie Burnage = Average Pulse * 3.17 + Duration * 5.84 – 334.52 |