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_probargument was faulty and has been removed. See PR #613 for details. -
The
resolution_parameterargument ofGraph.community_leiden()was renamed toresolutionfor 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 theInt64data type frompandas, thanks to @Adriankhl. See PR #609 for details. -
Graph.layout_lgl()rootargument is now optional (as it should have been). -
The
VertexClusteringclass now handles partial dendrograms correctly.