Ben Steer
Ben Steer
Python Raphtory has a small module for [null models](https://github.com/Pometry/Raphtory/blob/master/python/python/raphtory/nullmodels.py) which takes a dataframe and shuffles the data either by time or on destination - returning a raphtory graph. This allows...
As discussed in #942 Raphtory has a basic graph generation model for creating temporal networks based on established methodologies. These are currently undocumented - as such it would be great...
Currently Raphtory has some basic model generation in the [graph gen](https://github.com/Pometry/Raphtory/tree/master/raphtory/src/graphgen) module. There are, however, several other models which it would be good to include. ## A non exhaustive list...
Currently there is very little logging internal to the Raphtory core - as we use this more as a query endpoint via GraphQL it would be quite helpful to understand...
Currently if an algorithm was to make use of a certain property `weight` and aggregate it via a sum -if we wanted the same algorithm but using a mean aggregation...
Currently if ingesting data within python you have to use the (single threaded) Graph APIs and cannot use the faster internal rust connectors. These need to be exposed to the...
Currently it is very easy to filter the graph in any way a user may want i.e. get nodes which have a degree>10. However if we then ask for the...
When creating an accumulator I need to specify a unique ID for it i.e.: ```rust let hub_score = val::(0).init::(); //Taken from the hubs and auth algorithm ``` This could be...
There are several instances where it is a pain to be dealing with a directed graph - i.e. we just want to know if an edge exists between two nodes,...
There is currently no tests for Raphtory-js (as this was just an initial POC) - some basic testing needs to be added and attached to the CI so that we...