Naomi Arnold
Naomi Arnold
Hi there, I came across a small counting bug when I was implementing a modified version of your three-edge up-to-three node temporal motifs algorithm in our [temporal networks library](https://www.raphtory.com/) and...
### What changes were proposed in this pull request? Takes a temporal bipartite network with typed vertices and projects it along one side according to a time delta. ### Why...
Currently if you have a raphtory graph with edge properties and map it to a networkx graph, the properties are in a new map with keys "constant" or "temporal". Upon...
Pagerank example: ``` let out: HashMap = runner.run( vec![Job::new(step1)], vec![Job::new(step2), Job::new(step3), Job::new(step4), step5], PageRankState::new(num_vertices), |g, _, _, local| { local .iter() .enumerate() .map(|(v_ref, score)| (v_ref.into(), score.score)) .collect::() }, threads, iter_count,...
In the datetime parsing, would it be possible to have a flag for what unit the unix timestamp is in? equiv of the `unit` argument in pandas `to_datetime(...)` function https://pandas.pydata.org/docs/reference/api/pandas.to_datetime.html
Would be really nice to have a workflow for how to get stats from multiple different algos and window sizes into a pandas dataframe (kind of similar to the to_df...
Was working with the python version, it returns 0.0 for balance if the property is an integer. I think the problem is when it casts `into_f64` it only works if...
### What changes were proposed in this pull request? Temporal rich club coefficient -- measures the stability of edges connecting the highest degree nodes, see [here](https://www.nature.com/articles/s41567-022-01634-8) for an in-depth definition...
When running an algorithm with eval local state, if the graph has been windowed in a way that vertices are removed by that window, an entry still exists for them...
### What changes were proposed in this pull request? Add layers to the edge repr to show what layers an edge/exploded edge is present in, e.g. ``` Edge(source=A, target=B, earliest_time=1,...