當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python cuxfilter.dataframe.DataFrame.load_graph用法及代碼示例


用法:

classmethod load_graph(graph)

從圖形對象的 cudf.DataFrame/dask_cudf.DataFrame (zero-copy 參考) 創建一個 cuxfilter.DataFrame

參數

tuple object (nodes, edges) where nodes and edges are cudf DataFrames

返回

cuxfilter.DataFrame 對象

例子

從 cugraph 對象加載圖形

>>> import cuxfilter
>>> import cudf, cugraph
>>> edges = cudf.DataFrame(
>>>     {
>>>         'source': [0, 1, 2, 3, 4],
>>>         'target':[0,1,2,3,4],
>>>         'weight':[4,4,2,6,7],
>>>     }
>>> )
>>> G = cugraph.Graph()
>>> G.from_cudf_edgelist(edges, destination='target')
>>> cux_df = cuxfilter.DataFrame.load_graph((G.nodes(), G.edges()))

從(節點,邊)加載圖

>>> import cuxfilter
>>> import cudf
>>> nodes = cudf.DataFrame(
>>>     {
>>>         'vertex': [0, 1, 2, 3, 4],
>>>         'x':[0,1,2,3,4],
>>>         'y':[4,4,2,6,7],
>>>         'attr': [0,1,1,1,1]
>>>     }
>>> )
>>> edges = cudf.DataFrame(
>>>     {
>>>         'source': [0, 1, 2, 3, 4],
>>>         'target':[0,1,2,3,4],
>>>         'weight':[4,4,2,6,7],
>>>     }
>>> )
>>> cux_df = cuxfilter.DataFrame.load_graph((nodes,edges))

相關用法


注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cuxfilter.dataframe.DataFrame.load_graph。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。