(name, is_timedelta_col, is_datetime_col, unit, *stats)
| 85 | |
| 86 | @staticmethod |
| 87 | def operation(name, is_timedelta_col, is_datetime_col, unit, *stats): |
| 88 | return describe_numeric_aggregate( |
| 89 | stats, name, is_timedelta_col, is_datetime_col, unit |
| 90 | ) |
| 91 | |
| 92 | |
| 93 | class DescribeNonNumeric(DescribeNumeric): |
nothing calls this directly
no test coverage detected