igraph 0.10.3
Changed
-
The C core of igraph was updated to version 0.10.3.
-
UMAP layout now exposes the computation of the symmetrized edge weights via
umap_compute_weights()
. The layout function,Graph.layout_umap()
, can now be called either on a directed graph with edge distances, or on an undirected graph with edge weights, typically computed viaumap_compute_weights()
or precomputed by the user. Moreover, thesampling_prob
argument was faulty and has been removed. See PR #613 for details. -
The
resolution_parameter
argument ofGraph.community_leiden()
was renamed toresolution
for sake of consistency. The old variant still works with a deprecation warning, but will be removed in a future version.
Fixed
-
Graph.Data_Frame()
now handles theInt64
data type frompandas
, thanks to @Adriankhl. See PR #609 for details. -
Graph.layout_lgl()
root
argument is now optional (as it should have been). -
The
VertexClustering
class now handles partial dendrograms correctly.