-
Notifications
You must be signed in to change notification settings - Fork 169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add GraphData to data_reader notebook #601
Add GraphData to data_reader notebook #601
Conversation
Disabling auto merge until have a chance to test with @JGSweets bug fix on the graph data |
"graph_file = \"csv/graph_data_csv_identify.csv\"\n", | ||
"\n", | ||
"data = GraphData(os.path.join(data_folder, graph_file))\n", | ||
"print(data.data.edges)\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
data.data
isn't really an option for networkX object .... I'm not seeing an attirbute returning the data as a table. So I think either data.data.edges
or nodes
are the option for demonstrating the graph data
notebook adding graph example to the
data_reader
notebook file