python-igraph
python-igraph copied to clipboard
Python interface for igraph
wasm wheel
Hi folks! I'd like to use the igraph library inside the Pyodide environment. With their latest release, they [added the possibility to load binary wheels specifically built for WebAssembly](https://blog.pyodide.org/posts/0.21-release/#improvements-to-package-loading). Having...
**Describe the bug** Got an error when running PageRank algorithm on a scale graph. The number of edge is 2658026604, the size of edge file is 51G, and the edge...
Some functions have several selectable implementation, or can perform an operation with several methods / algorithms. There should be a single predictable keyword argument name to select the method to...
Is there a feature to display edge attributes with Matplotlib as with Cairo. With Cairo ``` g.es["label"] = g.es["weight"] ``` works perfectly however, adding this line below in `visual_style` never...
**Describe the bug** Looks like the `apidocs.css` file is overridden at some point. The latest css is not included in the api docs. So the user experience with the search...
**What is the feature or improvement you would like to see?** Update `community_multilevel()` to support resolution parameter. **Use cases for the feature** Feature parity with C core.
I am on Mac OS High Sierra (10.13) After installing igraph I have the following error: ``` >>> import igraph Traceback (most recent call last): File "", line 1, in...
**What is the feature or improvement you would like to see?** Update `modularity()` to support resolution parameter **Use cases for the feature** - Feature parity with C core - Working...
**Describe the bug** Passing in `None` values when constructing a `VertexClustering` works fine, but yields an error when calling `sizes()` function: ``` TypeError: list indices must be integers or slices,...
**Describe the bug** During #529 @szhorvat noticed matrices are allocated dynamically in a few places where a static allocation would do and reduce the risk of memory leaks. @ntamas found...