-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Hey Ben! Saw this repo and wondered if Grand meets your needs or if not, if there are improvements we could make that would get things more usable for you?
from grand import Graph
from grand.backends import DataFrameBackend
import pandas as pd
# Create an edges DataFrame
edges = pd.DataFrame({
'source': [0, 1, 2, 3, 4],
'target': [1, 2, 3, 4, 0],
'weight': [1, 2, 3, 4, 5],
})
nodes = pd.DataFrame({
'name': [0, 1, 2, 3, 4],
'value': [1, 2, 3, 4, 5],
})
graph = Graph(backend=DataFrameBackend(edge_df=edges, node_df=nodes), directed=True)(Should work on out-of-core pandas-like big data as well.)
It's useful for me to know what the shortcomings are!
Metadata
Metadata
Assignees
Labels
No labels