How to perform stepwise regression in python? There are methods for OLS in SCIPY but I am not able to do stepwise. Any help in this regard
You can make forward-backward selection based on statsmodels.api.OLS model, as shown in this answer.
statsmodels.api.OLS
However, this answer describes why you should not use stepwise selection for econometric models in the first place.