StellarGraph basics¶
StellarGraph has support for loading data via Pandas, NetworkX and Neo4j. This folder contains examples of the loading data into a StellarGraph
object, which is the format used by the machine learning algorithms in this library.
Find demos for a format¶
Demo |
Data formats |
Performance |
Data preprocessing |
---|---|---|---|
Anything supported by Pandas: CSV, TSV, Excel, JSON, SQL, HDF5, many more |
Good |
Via Pandas, scikit-learn and more |
|
Anything supported by NumPy, SciPy or other libraries: CSV, TSV, MATLAB |
Best |
Via NumPy, scikit-learn and more |
|
Anything supported by NetworkX: Adjacency lists, GEXF, GML, GraphML, Shapefiles, many more |
Poor |
Via graph-focused transforms and functions in NetworkX |
|
Any Cypher query supported by Neo4j |
Good for subgraphs and other queries |
Via Cypher functionality |