(estimator)
| 668 | |
| 669 | |
| 670 | def _check_estimator_name(estimator): |
| 671 | if estimator is not None: |
| 672 | if isinstance(estimator, str): |
| 673 | return estimator |
| 674 | else: |
| 675 | return estimator.__class__.__name__ |
| 676 | return None |
| 677 | |
| 678 | |
| 679 | def _pandas_dtype_needs_early_conversion(pd_dtype): |
no outgoing calls
no test coverage detected
searching dependent graphs…