draw()now correctly plots simplicial complexes with themax_orderkeyword #248 (@maximelucas).- Changed the
add_simplexmethod to be non recursive #247 (@maximelucas). - Added tests for the SimplicialComplex class #245 (@maximelucas).
- Made all draw functions available from xgi #246 (@maximelucas).
- Added an indent to make hypergraph json files more readable #242 (@maximelucas).
- Improved the efficiency of the uid update function #239 (@nwlandry).
- Added the ability to display the node and hyperedge labels in
draw()#234 (@mcontisc). - Fixed the uid counter initialisation #225 (@maximelucas).
- Added the ability to pickle hypergraphs #229 (@nwlandry).
- Made
random_hypergraph()andrandom_simplicialcomplex()faster #213 (@maximelucas). - Fixed a bug in
dynamical_assortativity()#230 (@nwlandry). - Removed all random decorators #227 (@nwlandry).
- Modified
unique_edge_sizes()so that the list of sizes is now sorted #226 (@nwlandry). - Added the
merge_duplicate_edges()function to merge multi-edges #210 (@nwlandry). - Partial speed-up of
drawfunction #211 (@iaciac). - Added a simplicial synchronization function #212 (@Marconurisso).
- Sped up the
add_simplices_from()method #223 (@maximelucas). - Updated the
add_simplices_from()method to matchadd_hyperedges_from()#220 (@maximelucas).
- Fixed #214, added a
powerset()function, added asubfaces()function, and added examples of these functions (#209). - Refactored the NodeStats and EdgeStats classes to be more efficient (#209).
- Implemented set operations for NodeView and EdgeView (#208).
- Addressed #180 with
density()andincidence_density()functions (#204 and #207). - Added the
<<operator to "add" two hypergraphs together (#203). - Improved the documentation (#202).
- Added Python 3.11 to the test suite (#201).
- Added an option to fill only some cliques with probabilities
pstoxgi.flag_complex()(#200). - Fixed Issue #198 (#199).
- Refactored
load_xgi_data()to calldict_to_hypergraph()and fixed a bug indict_to_hypergraph()(#193). - Added
num_edges_order()to get the number of edges of a given order and added anorderparameter to thedegree_counts()function (#192). - Fixed #182 and #186 by adding a
max_orderargument todraw()andload_xgi_data()(#173) . - Made
draw()faster by refactoring_color_arg_to_dict()and_scalar_arg_to_dict()(#173).
Contributors: @leotrs, @maximelucas, and @nwlandry
-
Hypergraph.has_edgeis nowIDView.lookup,Hypergraph.duplicate_edgesis nowIDView.duplicates, andutilities.convert_labels_to_integeris nowfunction.convert_labels_to_integer(#150). - Added some unit tests for the convert module, the function module, and the classic generators module. Fixed for minor bugs encountered while writing tests and added documentation to Read The Docs for the drawing module. (#153)
- Fixed a bug in
remove_node_from_edge()(#154). - Implemented computation of moments for NodeStat and EdgeStat (#155).
- Implemented weak and strong node removal as per issue #167 (#156).
- Added a dynamics module and created a Kuramoto model synchronization function (#159).
- Added a cleanup method that removes artifacts specified by the user: multi-edges, singletons, isolates. It also can convert all labels to consecutive integers (#161).
- Modified the
duplicates()method to not include the first instance of the node/edge in the list of duplicates (#161). - Converted all instances of edges to sets from lists in response to issue #158 (#162).
- Added lambda function default arguments for
$f$ ,$g$ ,$\varphi$ ,$\psi$ as defined by Tudisco and Higham. Default behavior is identical as before. Fixes #132 (#165). - Added
sum()as a stats method (#168). - Added a benchmarking suite for the core hypergraph data structure using airspeed velocity (#170).
- Fixed issue #171 (#172)
Contributors: @nwlandry, @leotrs, and @saad1282
- Keyword arguments are now consistent in the
draw()function (#148). - Notebooks are now formatted with black and the requirements have been updated to reflect this (#148).
Contributors: @nwlandry
- Added the ability to color nodes and edges in
xgi.draw()by value, iterable, or NodeStat/EdgeStat (#139, #142, and #143). - Fixed the distortion of the node aspect ratio with different figure sizes in Issue #137.
- Moved the
isolates()andsingletons()method from theHypergraphclass to theNodeViewandEdgeViewclasses respectively (#146). - Fixed
Hypergraph.copy()to not use thesubhypergraphmethod (#145). filterby()now acceptsNodeStatandEdgeStatobjects instead of just strings (#144).- Removed edit-mode install to run the Github Actions test suite (#136).
- Added unit tests (#147).
Contributors: @nwlandry, @leotrs, and @maximelucas
- Added the
statspackage which implementsNodeStat,EdgeStatand related functionality. This package now handles computation of edge size and degree (#120). - Removed the
EdgeSizeViewandDegreeViewclasses (#120). - Changed all imports to be relative in the
xgipackage (#121). - Added an assortativity module (#122).
- Improved the performance of accessing edge members (#124).
- Added more operations for node and edge attributes besides "eq" (#125).
- Added a function to convert all node and edge labels to integers and store the old labels as properties (#127).
-
- Renamed the
egonetmethod to `edge_neighborhood (#129).
- Renamed the
- Moved the
neighborsmethod in theHypergraphclass to theIDViewclass so that node and edge neighbors are now supported (PR #129). - Added a centrality module and added these methods to
nodestats.pyandedgestats.py(#130). - Moved the
load_xgi_datamethod to thereadwritemodule (#130). - Added a generator for sunflower hypergraphs (#130).
- Added a Jupyter notebook as a quickstart guide (#131 and #134).
- Fixed a bug in the
barycenter_spring_layoutandweighted_barycenter_spring_layoutmethods to handle non-integer node IDs (#133). - Added an isort configuration file so it no longer sorts the
__init__.pyfiles (#134).
Contributors: @leotrs, @nwlandry, and @iaciac
- Refactored the subhypergraph methods
- Moved functions not related to the core Hypergraph data structure to functions.py
- Removed unnecessary duplicated functions (
n_bunch_iter,get_edge_data, andhas_node) - Refactored the
members()method as well as theNodeViewandEdgeViewclasses for significant speedup. - Github Actions now tests the docstrings and tutorial notebooks
- The
add_edges_frommethod now supports different input formats. - Fixed various bugs in the generative models module.
- A method for double edge swaps is now implemented.
Contributors: @leotrs and @nwlandry
- Added the ability to convert to and from a NetworkX bipartite graph.
- Removed the
shapeproperty fromHypergraphand renamed thenumber_of_nodes()andnumber_of_edges()methods to thenum_nodesandnum_edgesproperties, respectively. - Added random seed decorator as in NetworkX.
- Added a
SimplicialComplexclass. - Added order and weighted arguments to the
incidence_matrixandadjacency_matrix functions. - Added an
intersection_profilefunction. - Added a
laplacianfunction with argumentorderand amultiorder_laplacianfunction. - Fix: Return an empty array rather than a 1x1 zero array when appropriate.
- Fix: Ensured that the incidence matrix is always has dimensions num_nodes x num_edges.
- Added 2 generators of random (maximal) simplicial complexes, and toy star-clique generator
- Extensively rewrote the documentation, updating the content and format on Read The Docs.
- Added an egonet function to get the edges neighboring a specified node.
- Added functions to visualize hypergraphs and simplicial complexes.
- Added the ability to get nodes and edges of given degrees/sizes respectively.
- Extended the
members()function to be able to get different data types and to either get a single edge or all edges. - Added the
load_xgi_datafunction to load datasets from the xgi-data repository. - Added two additional tutorials: a tutorial on visualizing higher-order networks and a case study replicating a recent paper.
- Changed the API of
degree_histogramand addeddegree_countsbased on #23. - Refactored the
IDDegreeViewclass and changed the API. Added the ability to specifyorderand the datatype. - Added an abstract class
IDDictto handle data validation.
Contributors: @iaciac, @leotrs, @lordgrilo, @maximelucas, @nwlandry, and @tlarock
H[attr]now accesses hypergraph attributesH.nodes[id]now accesses attributes, not bipartite neighbors- Removed the
__call__()functionality fromH.nodesandH.edges H.nodes.memberships(id)andH.edges.members(id)now access the bipartite neighbors- Created base classes for the Node/Edge Views and Degree/Edge Size Views to inherit from.
- Removed the NodeDataView and EdgeDataView.
- Updated the list of developers
__getitem__()in the NodeView and EdgeView are now in a try-except block for greater efficiency.- Removed the name attribute and fixed methods and tests to match.
- Fixed the
erdos_renyi_hypergraph(),chung_lu_hypergraph(), anddcsbm_hypergraph()methods such that the number of nodes will always match the number the user specifies, even if the resulting hypergraph is disconnected. - Changed the construction method from reading in a Pandas DataFrame to using the
add_node_to_edge()method for a 2x speedup. - Added some basic unit tests for the generative models.
- Added the dual keyword for the read_bipartite_edgelist() method.
- Added small functions to the Hypergraph class
- Added generator of random hypergraph
- Added functions for finding and removing isolates
- Refactored the
has_edge()method in the Hypergraph class.
Contributors: @leotrs, @maximelucas, and @nwlandry