Open
Description
When using causal model, I've got warnings:
"the default of observed=False is deprecated and will be changed to True in a future version of pandas..."
in causal_estimator.py line 266. After adding keyword "oberved=True" warning disappear
In a second
"due to key in a future will be use as labels : use ser.iloc[0]"
in regression_estimator.py line 131 after change parameter = self.model.params[0] with self.model.params.iloc[0] warning disappear.
Am I true, I'm not certain, but the job was done....