(self, dim=None, skipna=None, **kwargs)
| 110 | if include_skipna: |
| 111 | |
| 112 | def wrapped_func(self, dim=None, skipna=None, **kwargs): |
| 113 | return self.reduce( |
| 114 | func=func, |
| 115 | dim=dim, |
| 116 | skipna=skipna, |
| 117 | numeric_only=numeric_only, |
| 118 | **kwargs, |
| 119 | ) |
| 120 | |
| 121 | else: |
| 122 |