(self, selector, vertex_range=None, axis=0)
| 655 | return self._context_node._check_selector(selector) |
| 656 | |
| 657 | def to_numpy(self, selector, vertex_range=None, axis=0): |
| 658 | self._check_unmodified() |
| 659 | return self._session._wrapper( |
| 660 | self._context_node.to_numpy(selector, vertex_range, axis) |
| 661 | ) |
| 662 | |
| 663 | def to_dataframe(self, selector, vertex_range=None): |
| 664 | self._check_unmodified() |
nothing calls this directly
no test coverage detected