The Wayback Machine - https://web.archive.org/web/20220514063729/https://github.com/topics/graph-analysis
Skip to content
#

graph-analysis

Here are 103 public repositories matching this topic...

adocherty
adocherty commented Nov 27, 2019

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/

memgraph
antonio2368
antonio2368 commented Jan 4, 2022

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'
good first issue
TripleSpeeder
TripleSpeeder commented Nov 4, 2020

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
CXXGraph

Open Semantic Visual Linked Data Graph Explorer: Open Source tool (web app) and user interace (UI) for discovery, exploration and visualization of direct and indirect connections between named entities like persons, organizations, locations & concepts from thesarus or ontologies within your documents and knowledgegraph

  • Updated Jan 16, 2020
  • HTML
eriknw
eriknw commented Apr 15, 2022

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
documentation good first issue good second issue hygiene

Improve this page

Add a description, image, and links to the graph-analysis topic page so that developers can more easily learn about it.

Curate this topic

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."

Learn more