SearcharxivSearch

arXiv subjects

Vincent Traag

Publications and source records attributed to Vincent Traag.

9 recordsLinked to original sources

Heuristic and exact modularity optimization with size-constrained communities

When searching for communities in networks, domain experts may have some prior expectations about the size of communities. Yet, community detection methods normally do not optimize communities under cluster size constraints. Multi-resolution techniques allow users to indirectly control the average community size through changing a resolution parameter, but this practice does not control the size of individual communities. We here study the problem of size-constrained community detection, where the size of all communities is limited to a user-specified range of values, in the context of modularity optimization. We propose a heuristic for modularity optimization under community size constraints. To demonstrate the reliability of our proposed heuristic, we also formulate an exact integer optimization model and use its results as a baseline. Our analysis based on synthetic benchmarks and real networks demonstrate the issues with the currently common practice of changing resolution parameters and reveal the advantages of the proposed methods as a principled way of obtaining size-constrained communities. The proposed method is publicly available in the Python Leiden algorithm package.

physics.soc-ph

Persistent geographical biases in global scientific collaboration and citations

Scientific knowledge flows enable cumulative progress by connecting researchers across disciplines, institutions, and countries. Yet it remains unclear how geography and national structures continue to shape these exchanges in an increasingly connected world. Using a large-scale bibliometric dataset from OpenAlex, which covers 39.35 million publications across 95 countries and 3,794 cities between 2000 and 2022, we examine global knowledge diffusion through two complementary channels: co-authorship and citation. We find that the constraining effect of geographic distance on collaboration has not diminished over time but has instead intensified, suggesting persistent structural or institutional barriers. Citation flows, by contrast, are less sensitive to spatial proximity, indicating that intellectual influence may diffuse more freely across borders. At the country level, research networks exhibit strong domestic preferences and a shared citation orientation toward the United States. China, while increasingly favored as a collaboration partner by other countries, continues to be systematically undercited within global citation flows. International mobility increases researchers' collaboration with scholars in their host country but has limited effects on citation flows. These results highlight the structural persistence of spatial and country biases in global science, with implications for equitable participation and recognition across regions.

econ.GN

Contested Citations: The Role of Open Access Publications in Wikipedia's Scientific Disputes

Wikipedia is one of the largest online encyclopedias, which relies on scientific publications as authoritative sources. The increasing prevalence of open access (OA) publishing has expanded the public availability of scientific knowledge; however, its impact on the dynamics of knowledge contestation within collaborative environments such as Wikipedia remains underexplored. To address this gap, we analyze a large-scale dataset that combines Wikipedia edit histories with metadata from scientific publications cited in disputed Wikipedia articles. Our study investigates the characteristics of scientific publications involved in disputes and examines whether OA articles are more likely to be contested than paywalled ones. We find that scientific disputes on Wikipedia are more frequent in the social sciences and humanities, where topics often involve social values and interpretative variability. Publications with higher citation counts and publications in high-impact journals are more likely to be involved in disputes. OA publications are significantly more likely to be involved in disputes and tend to be contested sooner after publication than paywalled articles. This pattern suggests that increased accessibility accelerates both engagement and scrutiny. The relationship between OA status and dispute involvement also varies across disciplines, reflecting differences in Wikipedia editorial practices and norms. These findings highlight the dual role of OA in both expanding access to scientific knowledge and increasing its visibility in contexts of public negotiation and debate. This study contributes to a broader understanding of how scientific knowledge is collaboratively constructed and contested on open platforms, offering insights for research on open science, scholarly communication, and digital knowledge governance.

cs.DL

igraph enables fast and robust network analysis across programming languages

Networks or graphs are widely used across the sciences to represent relationships of many kinds. igraph (https://igraph.org) is a general-purpose software library for graph construction, analysis, and visualisation, combining fast and robust performance with a low entry barrier. igraph pairs a fast core written in C with beginner-friendly interfaces in Python, R, and Mathematica. Over the last two decades, igraph has expanded substantially. It now scales to billions of edges, supports Mathematica and interactive plotting, integrates with Jupyter notebooks and other network libraries, includes new graph layouts and community detection algorithms, and has streamlined the documentation with examples and Spanish translations. Modern testing features such as continuous integration, address sanitizers, stricter typing, and memory-managed vectors have also increased robustness. Hundreds of bug reports have been fixed and a community forum has been opened to connect users and developers. Specific effort has been made to broaden use and community participation by women, non-binary people, and other demographic groups typically underrepresented in open source software.

cs.SI

IGraph/M: graph theory and network analysis for Mathematica

IGraph/M is an efficient general purpose graph theory and network analysis package for Mathematica. IGraph/M serves as the Wolfram Language interfaces to the igraph C library, and also provides several unique pieces of functionality not yet present in igraph, but made possible by combining its capabilities with Mathematica's. The package is designed to support both graph theoretical research as well as the analysis of large-scale empirical networks.

physics.soc-ph

Systematic analysis of agreement between metrics and peer review in the UK REF

When performing a national research assessment, some countries rely on citation metrics whereas others, such as the UK, primarily use peer review. In the influential Metric Tide report, a low agreement between metrics and peer review in the UK Research Excellence Framework (REF) was found. However, earlier studies observed much higher agreement between metrics and peer review in the REF and argued in favour of using metrics. This shows that there is considerable ambiguity in the discussion on agreement between metrics and peer review. We provide clarity in this discussion by considering four important points: (1) the level of aggregation of the analysis; (2) the use of either a size-dependent or a size-independent perspective; (3) the suitability of different measures of agreement; and (4) the uncertainty in peer review. In the context of the REF, we argue that agreement between metrics and peer review should be assessed at the institutional level rather than at the publication level. Both a size-dependent and a size-independent perspective are relevant in the REF. The interpretation of correlations may be problematic and as an alternative we therefore use measures of agreement that are based on the absolute or relative differences between metrics and peer review. To get an idea of the uncertainty in peer review, we rely on a model to bootstrap peer review outcomes. We conclude that particularly in Physics, Clinical Medicine, and Public Health, metrics agree quite well with peer review and may offer an alternative to peer review.

cs.DL

Intermediacy of publications

Citation networks of scientific publications offer fundamental insights into the structure and development of scientific knowledge. We propose a new measure, called intermediacy, for tracing the historical development of scientific knowledge. Given two publications, an older and a more recent one, intermediacy identifies publications that seem to play a major role in the historical development from the older to the more recent publication. The identified publications are important in connecting the older and the more recent publication in the citation network. After providing a formal definition of intermediacy, we study its mathematical properties. We then present two empirical case studies, one tracing historical developments at the interface between the community detection literature and the scientometric literature and one examining the development of the literature on peer review. We show both conceptually and empirically how intermediacy differs from main path analysis, which is the most popular approach for tracing historical developments in citation networks. Main path analysis tends to favor longer paths over shorter ones, whereas intermediacy has the opposite tendency. Compared to main path analysis, we conclude that intermediacy offers a more principled approach for tracing the historical development of scientific knowledge.

cs.DL

From Louvain to Leiden: guaranteeing well-connected communities

Community detection is often used to understand the structure of large and complex networks. One of the most popular algorithms for uncovering community structure is the so-called Louvain algorithm. We show that this algorithm has a major defect that largely went unnoticed until now: the Louvain algorithm may yield arbitrarily badly connected communities. In the worst case, communities may even be disconnected, especially when running the algorithm iteratively. In our experimental analysis, we observe that up to 25% of the communities are badly connected and up to 16% are disconnected. To address this problem, we introduce the Leiden algorithm. We prove that the Leiden algorithm yields communities that are guaranteed to be connected. In addition, we prove that, when the Leiden algorithm is applied iteratively, it converges to a partition in which all subsets of all communities are locally optimally assigned. Furthermore, by relying on a fast local move approach, the Leiden algorithm runs faster than the Louvain algorithm. We demonstrate the performance of the Leiden algorithm for several benchmark and real-world networks. We find that the Leiden algorithm is faster than the Louvain algorithm and uncovers better partitions, in addition to providing explicit guarantees.

cs.SI

Clean up or mess up: the effect of sampling biases on measurements of degree distributions in mobile phone datasets

Mobile phone data have been extensively used in the recent years to study social behavior. However, most of these studies are based on only partial data whose coverage is limited both in space and time. In this paper, we point to an observation that the bias due to the limited coverage in time may have an important influence on the results of the analyses performed. In particular, we observe significant differences, both qualitatively and quantitatively, in the degree distribution of the network, depending on the way the dataset is pre-processed and we present a possible explanation for the emergence of Double Pareto LogNormal (DPLN) degree distributions in temporal data.

physics.soc-ph