(self)
| 175 | |
| 176 | @property |
| 177 | def X(self): |
| 178 | if self._X is None: |
| 179 | self._X = itemgetter(*self.split_inds)(self.wrapped_data.X) |
| 180 | return self._X |
| 181 | |
| 182 | @property |
| 183 | def Y(self): |
nothing calls this directly
no outgoing calls
no test coverage detected