(self)
| 181 | |
| 182 | @property |
| 183 | def Y(self): |
| 184 | if self._Y is None: |
| 185 | self._Y = np.array(itemgetter(*self.split_inds)(self.wrapped_data.Y)) |
| 186 | return self._Y |
| 187 | |
| 188 | def __iter__(self): |
| 189 | for idx in self.split_inds: |
nothing calls this directly
no outgoing calls
no test coverage detected