Slope regresi linier Python Sklearn

lm = LinearRegression()
lm.fit(mpg, price)

print(lm.intercept_)
print(lm.coef_)
Odd Okapi