graph-analysis
Here are 103 public repositories matching this topic...
Description
Currently our unit tests are disorganized and each test creates example StellarGraph graphs in different or similar ways with no sharing of this code.
This issue is to improve the unit tests by making functions to create example graphs available to all unit tests by, for example, making them pytest fixtures at the top level of the tests (see https://docs.pytest.org/en/latest/
-
Updated
May 14, 2022 - Cuda
-
Updated
May 12, 2022 - TypeScript
-
Updated
May 10, 2022 - C++
-
Updated
May 12, 2022 - Python
CASE doesn't work well with null. This works as expected and prints 'works':
WITH 2 AS name
RETURN CASE name
WHEN 2 THEN 'works'
WHEN null THEN "doesn't work"
ELSE 'something went wrong'
END
If we swap the first case from 2 to 3. It should print 'something went wrong', but instead it prints "doesn't work":
WITH 2 AS name
RETURN CASE name
WHEN 3 THEN 'works'
-
Updated
Jan 26, 2022 - Python
There is a proof-of-concept github action using https://github.com/ReactiveCircus/android-emulator-runner in branch https://github.com/BrightID/BrightID/tree/automate_detox
It kind of runs, but not usable/reliable.
Things to try:
- Make detox test a release build of the app so we don't need to have metro running in parallel
- Use iOS simulator instead of android emulator
- Fork the android
-
Updated
Feb 2, 2021 - C++
-
Updated
Sep 12, 2021 - C++
-
Updated
Mar 15, 2022 - Python
"Const" code review
-
Updated
Jan 4, 2021 - JavaScript
-
Updated
Feb 25, 2022 - Python
-
Updated
Mar 14, 2022 - Python
-
Updated
Jan 16, 2020 - HTML
-
Updated
Jun 27, 2021 - Python
-
Updated
Nov 24, 2021 - Python
-
Updated
Nov 18, 2021 - Python
-
Updated
Jan 24, 2021 - Python
-
Updated
Mar 20, 2022 - Python
As we write and update more docstrings, I think it would be helpful to specify what is expected and to do some checks in CI (and git pre-commit).
Like other libraries in the PyData ecosystem, I think we should rely heavily on the NumPy-style docstrings:
We can even use velin to help enforce this and identify common mistakes:
- htt
-
Updated
Apr 12, 2022 - Python
-
Updated
Dec 9, 2021 - Python
-
Updated
Nov 15, 2017 - Python
-
Updated
Jun 12, 2021 - C++
-
Updated
Feb 18, 2022 - Julia
-
Updated
May 5, 2022 - Go
Improve this page
Add a description, image, and links to the graph-analysis topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the graph-analysis topic, visit your repo's landing page and select "manage topics."


Discussed in networkx/networkx#5446
Originally posted by Moss4t March 31, 2022
In this documentation, I found how to access mapping attribute on graph C: C.graph['mapping']. But still no i