Tamás Nepusz

Results 691 comments of Tamás Nepusz

I think what's missing here is a default `_repr_svg_()` method for `Graph` objects. I wonder what to do with large graphs, though -- shall we render a placeholder or shall...

> I am wondering if it would make sense for igraph to have some persistent configuration options that control how it behaves in a notebook. The Python interface already has...

Just found out that the default configuration has a key named `ipython.inlining.Plot` with a boolean value that controls whether instances of the `Plot` class are inlined as SVG files in...

The type of the `initial` argument is now modified in `functions.yaml` in the develop branch to be an `INDEX_VECTOR` and not an arbitrary `VECTOR_INT`. This means that R will convert...

FWIW it looks like `character` cannot be converted to `integer` simply by doing an assignment, but it works the other way round: ```r # (1) converting a character attribute to...

Vertex drawing is specific to the R interface so I'm moving this issue there.

There are plans, but unfortunately my resources are limited, so I cannot promise any deadline in the near future. The HRG API surface in the C layer of igraph is...

This is not an issue for the C core; the C core is not concerned with graph drawing. Moving this to igraph/rigraph.

The underlying C library does not provide a weighted average path length function, only an unweighted one. (The diameter function exists in both variants: `igraph_diameter()` and `igraph_diameter_dijkstra()`). The only way...