graphtools icon indicating copy to clipboard operation
graphtools copied to clipboard

Tools for building and manipulating graphs in Python

Results 15 graphtools issues
Sort by recently updated
recently updated
newest added

Hello, For a while now igraph has been using name `igraph` instead of `python-igraph` on PyPI. Could you please update the name you use when specifying dependencies? I believe the...

I'm wondering if the output of `G = graphtools.Graph(X,decay=None)` is working as intended. My impression was that with `decay=None`, a kNN graph would be created. However, inspection of `G.K` reveals...

Hello, I have used graphtools to perform MNN batch correction in PHATE and it works well. I was wondering if I can use this same approach for other dimensionality techniques...

Good day, This PR began its life to fix the issues with randomized svd discussed in #58. To fix that, I monkey patched in a version of randomized svd using...

Hi, This test seems to fail in a way that is dependent on the sampling of the test dataset. I have been tinkering with this for a little while trying...

Hi, I noticed that master fails `test_landmark.test_landmark_knn_graph` and `test_landmark.test_landmark_knn_pygsp_graph`. The reason these tests fails is due to the shape of the landmark operator. The tests expect the landmark transitions operator...

Hi, ### *Randomized SVD is not accurate* Currently most (if not all) of the PCA / linear dimensionality reduction / SVD is first routed through either `TruncatedSVD` or `PCA(svd_solver='randomized')`. It...

Need to rename theta (symmetrization) and beta (batch correction weight)

graphtools should provide certain canonical manifold learning datasets. MATLAB implementation courtesy of Nick Marshall ``` function [X,C,name] = benchmark(code,N,alpha) % BENCHMARK Generates manifold learning benchmark datasets. % [X,C,name] = benchmark(code,N,alpha)...

enhancement