Results 25 comments of Ritesh Agrawal
trafficstars

hi @lqrz Thanks for reporting the issue. I agree. Let me fix it in the next release.

Meanwhile, let me know if existing solution to control log message works for your not. You can explicit set logging level for sklearn_pandas using the following code ```python import logging...

sorry for the delay. Let me look into this.

FYI: it seems sklearn >= 1.0 requires Python>=3.7.

Hi, Let me review the PR this week and merge it. I think it will be a major release as we will break some of the existing functionalities.

hi @falcaopetri -- thanks for your contribution. I made few changes to your PR. But I think we need to rethink about whole alias/prefix/suffix . If you are available, we...

Sure, can you create a MR and add a unit test. I will be happy to merge it.

@JohnPaton , @iDmple can you provide a simple example that I can use to build and test the solution.

It seems the problem is with the XGBoost library (over [here](https://github.com/dmlc/xgboost/blob/master/python-package/xgboost/sklearn.py#L301)). It explicitly calling get_params on Step class as it's using bases[0]. I will appreciate if you can suggest any...

I was able to avoid the problem for now by replacing the above-mentioned line with the below logic. ``` cp = copy.copy(self) tmp = copy.copy(self) found = False for base...