Issues with code. #7847
tprashanth079-hash
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
NameError Traceback (most recent call last)
Cell In[124], line 5
1 from statsmodels.formula.api import ols
3 model2 = ols(
4 "
Delivery Time Hours~Traffic Index+Route Complexity+Driver Experience Years",----> 5 data=logistics_delivery_data_2000
6 ).fit()
8 print(model2.summary())
NameError: name 'logistics_delivery_data_2000' is not defined...
my code is....
from statsmodels.formula.api import ols
model2 = ols(
"
Delivery Time Hours~Traffic Index+Route Complexity+Driver Experience Years",data=logistics_delivery_data_2000
).fit()
print(model2.summary())
Beta Was this translation helpful? Give feedback.
All reactions