MCPcopy Create free account
hub / github.com/alibaba/GraphScope / to_numpy

Method to_numpy

python/graphscope/framework/context.py:657–661  ·  view source on GitHub ↗
(self, selector, vertex_range=None, axis=0)

Source from the content-addressed store, hash-verified

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()

Callers

nothing calls this directly

Calls 2

_check_unmodifiedMethod · 0.95
_wrapperMethod · 0.80

Tested by

no test coverage detected