Raphtory
Raphtory copied to clipboard
Ingestor tidy up
For the pandas and Parquet loader we want to do the following:
-
[ ] Bring the order of required arguments in line with add_node/add_edge - this means instead of src,dst, time it should be time, src, dst. https://github.com/Pometry/Raphtory/issues/1673
- This should be on the following functions
load_edge_props_from_pandas
,load_edges_from_pandas
,load_from_pandas
,load_node_props_from_pandas
,load_nodes_from_pandas
,load_edge_props_from_parquet
,load_edges_from_pandas
,load_from_pandas
,load_node_props_from_pandas
,load_nodes_from_parquet
- This should be on the following functions
-
[ ] Any reference to const_properties should be changed to constant_properties
-
[ ] https://github.com/Pometry/Raphtory/issues/1674
-
[ ] We need to replace
layer
/layer_in_df
withlayer_name
andlayer_col: Option<&str>
and simply raise a runtime error if both are specified at the same time -
[ ] Will need to update docs when this is done