-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
262 lines (240 loc) · 15.7 KB
/
Copy pathabout.html
File metadata and controls
262 lines (240 loc) · 15.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Hypergraphx-data</title>
<meta name="description" content="About Hypergraphx-data, a curated repository of higher-order network datasets, with attribution and contact information.">
<meta property="og:title" content="Hypergraphx-data · About">
<meta property="og:description" content="About Hypergraphx-data, a curated repository of higher-order network datasets, with attribution and contact information.">
<meta property="og:type" content="website">
<meta property="og:image" content="static/images/logo_cropped-removedbg.png">
<link rel="icon" type="image/png" href="static/images/logo_cropped-removedbg.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Link to the external CSS file -->
<link rel="stylesheet" href="static/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<!-- Bootstrap Navbar (Header) with Burger Menu -->
<a class="skip-link" href="#mainContent">Skip to content</a>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<!-- Navbar Brand -->
<a class="navbar-brand" href="index.html">
<img src="static/images/logo_cropped-removedbg-whitegraph.png" alt="HGX Logo" width="30" height="30" class="d-inline-block align-text-center">
Hypergraphx-data
</a>
<!-- Burger Icon for Collapsing Menu -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapsible Menu Items -->
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index.html"><i class="fa-solid fa-house"></i> Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="statistics.html"><i class="fa-solid fa-database"></i> Statistics</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="about.html"><i class="fa-solid fa-address-card"></i> About</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link nav-link-muted dropdown-toggle" href="#" id="resourcesDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
<i class="fa-solid fa-link"></i> Resources
</a>
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="resourcesDropdown">
<li><a class="dropdown-item" href="https://github.com/HGX-Team/hypergraphx/tree/main/tutorials" target="_blank" rel="noopener noreferrer">Tutorials <i class="fa-solid fa-arrow-up-right-from-square ms-1"></i></a></li>
<li><a class="dropdown-item" href="https://github.com/pszufe/HIF-standard" target="_blank" rel="noopener noreferrer">HIF <i class="fa-solid fa-arrow-up-right-from-square ms-1"></i></a></li>
<li><a class="dropdown-item" href="https://github.com/HGX-Team/hypergraphx" target="_blank" rel="noopener noreferrer">GitHub <i class="fa-solid fa-arrow-up-right-from-square ms-1"></i></a></li>
<li><a class="dropdown-item" href="https://hypergraphx.readthedocs.io/en/latest/" target="_blank" rel="noopener noreferrer">Docs <i class="fa-solid fa-arrow-up-right-from-square ms-1"></i></a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!-- Main Content -->
<main id="mainContent">
<div class="container mt-4">
<!-- Page Title -->
<div class="text-center">
<img src="static/images/logo.png" alt="Hypergraphx-data" class="page-logo">
</div>
<nav aria-label="breadcrumb" class="breadcrumb-container">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Datasets</a></li>
<li class="breadcrumb-item active" aria-current="page">About</li>
</ol>
</nav>
<section class="mb-5">
<h3>About Hypergraphx-data</h3>
<p>
<b>Hypergraphx-data</b> is a comprehensive repository of higher-order network datasets curated to facilitate research and analysis in the field of complex systems. The repository encompasses a diverse collection of datasets representing various real-world systems, including social networks, biological systems, collaboration networks, and more.
Each dataset is meticulously documented, providing essential information such as data source, format, and relevant metadata to ensure ease of use for researchers and practitioners.
</p>
</section>
<section class="mb-5">
<h3>About Hypergraphx</h3>
<p>
<b>Hypergraphx</b> is a Python library for the analysis of real-world complex systems with group interactions and provides a comprehensive suite of tools and algorithms for constructing, visualizing, and analyzing hypergraphs.
The library is designed to be user-friendly and accessible, with a wide range of functionalities that can be applied to a diverse set of applications and use cases.
</p>
</section>
<div class="text-center">
<img src="static/images/hypergraph-transparent.png" alt="Hypergraph" class="page-illustration">
</div>
<section class="mb-5">
<h3>Ecosystem highlights</h3>
<ul>
<li>HGX allows storing higher-order data as hypergraphs and converting them to bipartite networks, maximal simplicial complexes, higher-order line graphs, dual hypergraphs, and clique-expansion graphs.</li>
<li>Our library provides a variety of higher-order centrality measures for nodes and hyperedges, based on participation in different subhypergraphs, spectral approaches, and shortest paths and betweenness flows.</li>
<li>HGX implements higher-order motif analysis and provides an approximated algorithm for motif analysis based on hyperedge sampling, which can speed up computations by orders of magnitude with minimal compromise in accuracy.</li>
<li>Our library includes spectral methods to recover hard communities, generative models to extract overlapping communities and infer hyperedges, and methods to capture assortative and disassortative community structure and core-periphery organization in higher-order systems.</li>
<li>We offer various tools to filter the most informative higher-order interactions by extracting statistically validated hypergraphs and identifying significant maximally interacting node groups.</li>
<li>HGX includes a synthetic hypergraph samplers library, implementing models such as Erdős-Rényi, scale-free, configuration, and community-based models. It also features a higher-order activity-driven model for temporal group interactions.</li>
<li>We provide functions to simulate and analyze dynamic processes on higher-order networks, including synchronization, social contagion, and random walks.</li>
<li>HGX is highly flexible, allowing the storage and analysis of hypergraphs with a rich set of features associated with hyperedges, including interactions of varying intensity, direction, sign, temporal variation, and membership in different layers of a multiplex system.</li>
<li>Our library includes various visualization tools to gain visual insights into the higher-order organization of real-world systems.</li>
</ul>
</section>
<section class="mb-5">
<h3>Hypergraphx-data authors</h3>
<ul>
<li>Quintino Francesco Lotito (Central European University, Austria)</li>
<li>Lorenzo Betti (Central European University, Austria)</li>
<li>Berné Nortier (Central European University, Austria)</li>
<li>Alberto Montresor (University of Trento, Italy)</li>
<li>Federico Battiston (Central European University, Austria)</li>
</ul>
</section>
<section class="mb-5">
<h3>Disclaimer</h3>
<p>
The data on this website are processed versions of the original sources, made easy to use with Hypergraphx and, through the Hypergraph Interchange Format (HIF), compatible with other hypergraph Python libraries. These changes help users work with the data smoothly, while respecting the original authors’ intent to share their work publicly.
</p>
</section>
<section id="attribution" class="mb-5" aria-labelledby="attribution-heading">
<h3 id="attribution-heading">Attribution</h3>
<p>Please acknowledge usage as follows:</p>
<ul>
<li>
When using data from <em>Hypergraphx-data</em>, please cite the works listed on the dataset’s description page.
A copy-and-paste BibTeX entry referencing the upstream source of the data is provided on each page.
</li>
<li>
To reference the repository as a whole, please cite
<span itemscope itemtype="https://schema.org/CreativeWork">
<span itemprop="author">Lotito, Quintino Francesco, et al.</span>
“<cite itemprop="name">Hypergraphx-data: a repository for higher-order network data</cite>,”
<span itemprop="datePublished">2025</span> (working paper).
</span>
</li>
<li>
When using the <em>Hypergraphx</em> python library, please cite
<span itemscope itemtype="https://schema.org/ScholarlyArticle">
<span itemprop="author">Lotito, Quintino Francesco, et al.</span>
“<cite itemprop="name">Hypergraphx: a library for higher-order network analysis</cite>,”
<em itemprop="isPartOf" itemscope itemtype="https://schema.org/Periodical">
<span itemprop="name">Journal of Complex Networks</span>
</em>
<span itemprop="volumeNumber">11</span>.<span itemprop="issueNumber">3</span> (2023): <span itemprop="pageEnd">cnad019</span>.
</span>
<div class="mb-3">
<div id="bibtexContainer">
<pre class="bibtex-container" id="bibtexContent">
<button class="copy-button" onclick="copyBibTex()">Copy</button>
<span class="copy-status" id="copyStatus">Copied!</span>
@article{lotito2023hypergraphx,
title={Hypergraphx: a library for higher-order network analysis},
author={Lotito, Quintino Francesco and Contisciani, Martina and De Bacco, Caterina and Di Gaetano, Leonardo and Gallo, Luca and Montresor, Alberto and Musciotto, Federico and Ruggeri, Nicol{\`o} and Battiston, Federico},
journal={Journal of Complex Networks},
volume={11},
number={3},
pages={cnad019},
year={2023},
publisher={Oxford University Press}
}
</pre>
</div>
</div>
</li>
</ul>
</section>
<section id="contact" class="mb-5" aria-labelledby="contact-heading" itemscope itemtype="https://schema.org/Organization">
<h3 id="contact-heading">Contact us</h3>
<p>Have questions, feedback, or collaboration ideas? Reach out:</p>
<ul>
<li>
<a href="https://github.com/HGX-Team/hypergraphx-data/issues/new/choose" target="_blank" rel="noopener noreferrer" itemprop="sameAs">
<i class="fa-brands fa-github" aria-hidden="true"></i>
Open a GitHub issue
</a>
</li>
<li>
<address class="not-italic">
<a href="mailto:lotitoq@ceu.edu?subject=Hypergraphx%20inquiry" itemprop="email">
<i class="fa-solid fa-envelope" aria-hidden="true"></i>
lotitoq@ceu.edu
</a>
</address>
</li>
</ul>
</section>
<section id="acknowledgments" class="mb-5" aria-labelledby="acknowledgments-heading">
<h3 id="acknowledgments-heading">Acknowledgments</h3>
<p>
F. B. acknowledges support from the Austrian Science Fund
(FWF) under projects
<a href="https://doi.org/10.55776/PAT1052824">10.55776/PAT1052824</a> and
<a href="https://doi.org/10.55776/PAT1652425">10.55776/PAT1652425</a>.
</p>
<p>
A. M. acknowledges support from the European Union through Horizon Europe CLOUDSTARS project (101086248).
</p>
</section>
</div>
</main>
<!-- Footer -->
<button class="back-to-top" id="backToTop" type="button" aria-label="Back to top">
<i class="fa-solid fa-arrow-up"></i>
</button>
<footer class="footer-custom bg-dark text-white py-3">
<div class="container text-center">
<div>Hypergraphx-data: a repository of higher-order network datasets · © <span id="footerYear">2026</span></div>
</div>
</footer>
<script>
const footerYear = document.getElementById('footerYear');
if (footerYear) footerYear.textContent = new Date().getFullYear();
</script>
<script>
function copyBibTex() {
// Extract only the text content, ignoring nested HTML and elements
const bibtexContentDiv = document.getElementById("bibtexContent");
const bibtexText = Array.from(bibtexContentDiv.childNodes)
.filter(node => node.nodeType === Node.TEXT_NODE) // Select only text nodes
.map(node => node.textContent.trim()) // Get text and trim any extra spaces
.join("\n"); // Join lines with newline for proper formatting
navigator.clipboard.writeText(bibtexText).then(() => {
const copyStatus = document.getElementById("copyStatus");
copyStatus.style.display = "inline"; // Show "Copied!" message
setTimeout(() => {
copyStatus.style.display = "none"; // Hide it after 2 seconds
}, 2000);
}).catch(err => {
console.error("Failed to copy text: ", err);
});
}
</script>
<!-- Bootstrap JS (Optional) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
<script defer src="static/js/back-to-top.js"></script>
</body>
</html>