You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raiseKeyError(f"Could not find dependent variable column. Expected either '{dep_var}' or 'dep_var' in columns: {self.featurized_mmm_data.dt_mod.columns.tolist()}")
28
+
else:
29
+
y=self.featurized_mmm_data.dt_mod[dep_var]
30
+
31
+
# Select all columns except the dependent variable and date columns
32
+
exclude_cols= ['ds'] # Always exclude 'ds' if present
0 commit comments