Music Collaboration Networks

Fig. 2 — Giant component snapshot, 2016

Figure 2 — Snapshot of the 2016 music collaboration network, the giant component and the sub-components. Artist node sizes reflect degree; edge thickness indicates collaboration weight; node colors reflect main genre classification.

This project explores the structural and temporal dynamics of artist collaborations in music through the lens of network science. Using Spotify data, artist relationships are modeled as a temporal graph with yearly snapshots from 1986 to 2016. The evolution of the network and its giant component are analyzed to track the growth, structure, and connectivity over time. Betweenness centralities of the artists, are analyzed to track collaboration patterns within different music genres, and to identify central artists in the collaboration network, who potentially bridge different groups and communities. Entropy is used as a metric to measure diversity and identify cross-genre collaborators. The results show an increasingly connected collaboration network, with rising activity over time, yet one that becomes more centralized around a smaller set of highly connected artists. The analysis concludes by identifying the top collaborating artists, who have had impact on the collaboration landscape across the decades.

1Introduction

Network theory provides a powerful framework to model relationships and interactions between individuals. With the increasing availability of large-scale, structured datasets from platforms like Spotify, it has become possible to apply network analysis to domains such as music. Viewing artist collaborations through the lens of network science allows us to apply mathematical and computational techniques to analyze which structural properties and patterns they exhibit, and better understand the underlying factors driving their evolution.

Network theory is also a concept with a wide range of use cases, providing a broad abstraction model capable of representing everything from cellular processes and road systems to matchmaking algorithms and social networks. That also means that a problem which has a known solution in one field, surprisingly can lead to answers or insights to questions we have with regards to music collaboration networks that might not initially seem connected. This flexibility gives the opportunity to e.g. explore the evolution of music genre collaborations as a temporal graph or to identify central artists who act as structural bridges across genres or communities.

This study aims to explore the evolution of music collaboration networks over the period 1986 to 2016. Specifically, it seeks to address two main questions: (1) How has the volume and structure of collaboration changed over time? and (2) Which high-collaboration artists can be identified through quantitative network measures? By answering these questions, the project contributes to a better understanding of patterns in artistic collaboration and the roles of individual artists within the network. The following section reviews related work in this area and highlights various approaches to situate the context of this project.

3Data

3.1Spotify Million Playlist Dataset

The dataset used in this study is based on The Spotify Million Playlist Dataset Challenge [13], a publicly available dataset designed to improve music recommendation systems. This dataset consists of one million user-generated playlists collected from Spotify between 2010 and 2017. It was selected for its large size and diverse representation of musical preferences in different time periods and genres. From the playlists, a subset of unique tracks was extracted and additional metadata was acquired by querying the Spotify Web API. In the end, the final processed dataset includes 874762 songs, by 186403 artists. Table 1 presents a sample of the JSON data structure. Each entry is indexed by the track ID and contains the specified fields, with artists represented as a nested object.

It is important to acknowledge certain limitations in the dataset. First, the data is inherently biased towards user-generated playlists, meaning that it does not fully represent all music available on Spotify. Additionally, the popularity scores fluctuate over time, since it has emphasis on recent listening trends. The dataset will only capture a snapshot in time, meaning that values may have changed since data collection. Finally, Spotify's genre annotation is by no means complete, and some tracks may lack assigned genres or be misclassified.

Another important limitation concerns the inconsistency of metadata. While the project aims to study collaborations among active or contemporary artists, the dataset includes many releases by classical composers who deceased centuries ago, but whose works continue to be featured in modern playlists. To mitigate this, the 25 most popular classical composers according to Pentreath were excluded from the data [15]. Additionally, releases involving more than five credited artists were filtered out, as these often represent compilation albums or highly aggregated credits that can introduce artificial noise in the network. These factors should be considered when interpreting the results.

Track ID29OaX99VkV4vLX2ab5sKrJ
Track NameMoney On The Floor
Album NameLive From The Underground
Release Year2012
Duration (ms)247160
Popularity41
ExplicitTrue
ArtistsBig K.R.I.T., 8Ball & MJG, 2 Chainz
GenresRap, Southern Hip Hop, Crunk, Memphis Rap
Table 1 — Sample data structure. The popularity score is an algorithmically determined metric provided by Spotify [14].

3.2Music Collaboration Graph

With the dataset, I am ready to define a music collaboration graph. As explored by Arram Bae et al. [2] by modeling the British composer network, the complete list of song data can naturally be represented as a bipartite graph with two node classes, VS and VA. VS consists of the songs and VA represents the artists from the dataset. There exists one or more edges from vS VS to artists vA VA, if vA was credited in the song's metadata.

Figure 1 — (a) Bipartite network of the songs and artists. (b) One-mode projection of the bipartite network onto the set of artists by connecting artists when they are associated with a common release. Edge weights equal the number of releases they did together.

To derive the yearly collaboration networks, I project this bipartite graph onto the artist node set. Specifically, for each year t, I form an undirected edge (u, v) ∈ Et between two artists u and v if they both contributed to at least one song released in year t. Figure 1 illustrates an example of the graph creating process.

With the artist-to-artist projection, the temporal music collaboration network is then modeled as a sequence of undirected graphs

G = {G1986, G1987, . . . , G2016},

where each single snapshot Gt = (Vt, Et) represents the state of the collaboration network in year t. This means the model is not accumulative or overlapping between years, but reflects discrete yearly views of the network, as described by Coscia [16].

The set of vertices Vt consists of all artists who released at least one record in year t. The set of undirected edges Et ⊆ Vt × Vt captures collaborations between artists during the same year.

An edge (u, v) ∈ Et exists if artists u and v collaborated on at least one release in year t. Each edge is assigned a weight wt(u, v) ∈ ℕ, representing the number of joint releases by u and v in that year.

3.2.1Genres

Each node and edge in Gt is annotated with genre information derived from the songs of the dataset. For artist nodes, this takes the form of (1) one single primary genre, and (2) a multiset of genres representing all genre labels from the songs the artist participated in during year t, allowing for repeated occurrences of the same genre. Similarly, each edge (u, v) ∈ Et stores a multiset of genres corresponding to all collaborative tracks between artists u and v in that year.

From the 673 unique present genres, each artist node is assigned a single primary genre. The motivation for this, is to abstract some of the complexity away and facilitate some more general comparisons across years and genres.

To derive these primary genres, all genre labels were manually grouped into a set of nine supergenres (e.g., Pop, Rock, Hip Hop, etc.). This mapping process was done manually by personal judgment, but I will discuss alternative approaches in the later sections. The distribution among the frequencies of genre appearing in the data, and which super-genre they belong too, are visualized as a tree-map in Appendix 8.1. Once each genre was assigned to a super-genre, the primary genre of a node was determined by a simple majority vote over the node's genre multiset for a given year. In cases of ties, one of the top supergenres was selected at random.

4Methodology

These sections outline the methodological approaches taken, and how they are implemented in this project from the context of the related works.

4.1Giant Component

To understand the overall connectivity of music collaborations, this study examines the giant component in yearly snapshots of the network. The giant component is the largest connected subgraph, commonly used to assess whether a network is cohesive or fragmented. In this context, its growth over time is interpreted as a sign of increasing connectivity and broader access to collaboration opportunities. The size of the giant component serves as a tool to understand how centralized or diffuse the collaboration network is in a given year.

4.2Degree Distribution and Power-Law Exponents

Degree distributions are analyzed for both the full collaboration graph and its giant component, across each year from 1986 to 2016. For each case, the distribution is fitted to a power-law model of the form

P(k) ∼ k−α

Where k is the degree and α is the scaling exponent. The exponent α is estimated using maximum likelihood estimation (MLE), which identifies the value that best fits the observed degree distribution. This is done with the python package powerlaw [17]. A lower value of α indicates a heavier tail, meaning that a small number of artists maintain a high number of collaborations, which is typical for scale-free networks. Comparing these values over time provides insight into how collaborations are distributed across the network, whether they remain concentrated among a few central artists or becomes more evenly spread. This also allows us to assess whether the network maintains scale-free characteristics as it evolves.

4.3Betweenness Centrality

Betweenness centrality is a widely used measure for identifying nodes that serve as bridges or intermediaries within a network. For a given artist, the betweenness centrality score reflects the number of shortest paths between all other pairs of artists that pass through that artist. High betweenness indicates that an artist plays a crucial role in connecting different parts of the network, potentially bridging otherwise disconnected groups or distant parts of the network.

The formal definition of betweenness centrality, is defined as

CB(v) = Σs,t∈Vσ(s, t|v)σ(s, t)

where σ(s, t) is the number of shortest paths between nodes s and t, and σ(s, t|v) is the number of those paths that pass through node v.

If s = t, then σ(s, t) = 1. If v ∈ {s, t}, then σ(s, t | v) = 0, since a node is not considered to lie on a path between itself and another node.

In this study, edge weights are not considered and all collaborations are treated equally. This means that the shortest path distances are computed purely on the basis of the number of edges and not their strength.

Betweenness centrality is computed annually for all nodes in the collaboration graph from 1986 to 2016. In later years, as the network grows larger and exact computation becomes increasingly resource-intensive, an approximation method is used to estimate scores more efficiently. While these approximations may not yield precise values, they preserve the relative ordering of nodes. Meaning that artists with higher centrality still rank above those with lower centrality. These scores help highlight artists who occupy central structural positions in the network.

4.4Entropy

Entropy is used here to measure the diversity of genres in an artist's collaboration neighborhood. A higher entropy score, will suggest that an artist collaborates more broadly across genres, and a lower score suggests that artists are more likely to collaborate within the same genres.

To compute an artist's entropy value, I take the same approach as Silva et al. [11]. I construct the histogram ha(g), representing the frequency of each genre g appearing among the artists connected to artist a. As described in 3.2, genre labels from these artists are appended to the artist's genre attribute when constructing the graph, allowing duplicates, meaning that genres can contribute multiple times based on the number of collaborations. This also makes edge weights redundant in this case, as including them would introduce the problem of having genre counts scale artificially with the number of collaborators per release.

To avoid the entropy measure being dominated by the most frequent genre labels, each histogram ha(g) is normalized by dividing by the global frequency of genre g throughout the entire network:

a(g) = ha(g)Σj hj(g)

The normalized values a(g) are then transformed into a probability distribution Pa(g):

Pa(g) = a(g)Σg′a(g′)

Finally, the entropy is computed as:

Ha = −ΣgPa(g) · log Pa(g)

One of the limitations of this approach is that it does not consider the closeness or relationship between genres, and therefore does not account for semantic or stylistic similarity. Shannon entropy does not capture the natural hierarchical structure of genre labels. For example, Shannon entropy treats synth pop and pop as equally distinct as heavy metal and christmas, even though the former are more closely related. As such, while entropy gives a useful indication of variety, it does not directly reflect genre distance or blending across genre hierarchical trees.

5Results and Analysis

5.1Graph Summary

As a foundation for examining the evolution of the network, Table 2 provides a yearly overview of the graph snapshots from 1986 to 2016. For each year, the total number of artist nodes and collaboration edges are listed, along with giant component (GC), including its size and average degree.

YearNodesEdgesGC NodesGC EdgesAvg. DegreeGC Avg. DegreeCollab %
198693231830510.6823.40011.41
19871,175619641061.0543.31214.48
19881,33070858951.0653.27616.02
19891,340591581000.8823.44813.13
19901,8089231572791.0213.55416.16
19911,85592452970.9963.73113.66
19921,9869321352560.9393.79313.22
19932,226906911680.8143.69211.10
19942,6641,3762674711.0333.52813.84
19952,8211,3031823260.9243.58214.36
19963,0641,418711270.9263.57713.01
19973,3151,6011823400.9663.73613.95
19983,6482,0723376431.1363.81615.63
19994,2392,4354527841.1493.46915.99
20004,6662,4404127201.0463.49515.97
20014,8452,4733526861.0213.89812.74
20025,0602,4174497550.9553.36312.71
20035,8252,7586491,1410.9473.51613.55
20046,2972,8404878870.9023.64312.83
20058,0863,6057481,3100.8923.50313.15
20069,6464,3329771,7940.8983.67213.32
200710,5494,5281,0581,8300.8583.45913.41
200811,9554,8847971,4220.8173.56812.07
200914,5746,3481,3122,2380.8713.41213.66
201017,7387,9021,8393,1970.8913.47713.77
201121,71510,6082,9665,1460.9773.47015.06
201225,41214,7484,4167,8041.1613.53418.05
201328,09216,9855,5269,7941.2093.54518.74
201431,56220,2567,00712,1291.2843.46221.16
201535,29324,9689,20916,5041.4153.58423.47
201639,08529,70811,72320,9871.5203.58025.67
Table 2 — Graph summary of the collaboration network. The collaboration percentages are the share of nodes from the bipartite graph with degree greater than one, or simply the songs, with more than one credited artist.

The collaboration percentage represents the proportion of songs in each year that were created by more than one credited artist. In the bipartite graph, this corresponds to the share of song nodes with a degree greater than one. Interestingly, while the collaboration percentage increases significantly over time, from around 11% in the late 1980s to over 25% by 2016—the average degree of the artist nodes grows at a much slower rate. This suggests that although collaborations became more common, they did not necessarily lead to a denser network of artist relationships. One possible explanation is, that collaborative songs are released by the same highly active artists, which inflates the collaboration percentage, as these primarily reinforces existing links without increasing the average number of distinct co-collaborators per artist.

Another interpretation of this, is that while collaboration frequency increases, but the average degree does not grow at the same pace, could be because the artists collaborate more frequently but with the same kind of artists rather than different ones.

Fig. 2 presents a snapshot of the collaboration network in 2016, highlighting the giant component alongside the smaller disconnected subcomponents. The giant component dominates the network and connects the majority of active artists.

5.2Degree Distribution

To explore this idea further, I examined the degree distribution of the collaboration network over time. Fig. 3 and Fig. 4 shows a plot of the frequencies of degrees for artists over the years. The degree distribution for both the full network and the giant components shows a pattern that, some artists are super collaborators while the majority has very few collaborations. This pattern is typical for social networks, which exhibits scale-free properties.

Figure 3 — Log-Log plot of the artists' degree distributions over years.
Figure 4 — Log-Log plot of the artists degree distribution in the giant component over years.

The power-law exponent α was computed for both the full graph and its giant component each year. As shown in Figure 5, the values of α fluctuate considerably in the early years but gradually stabilize from the late 1990s onward.

High values of α, in particular 1990 and 1993, suggest a network with very few super-collaborators and degrees more evenly spread. These spikes possibly reflect sparsity in the early data, where fewer collaborations are recorded and the network is still fragmented, but could also indicate the presence of disconnected subgroups or more local music communities that had not yet integrated into the giant component.

Figure 5 — The power-law exponents of the yearly snapshots in the full graph and and the giant components.

As the network matures, α values converge toward a range between 3 and 4. This indicates a more classic structure, that a small number of artists are highly connected, while the majority maintain few connections. These lower α values correspond to heavier-tailed distributions, typical of social and collaboration networks where hubs emerge over time.

One possible interpretation of the convergence between the power-law exponents of the full graph and the giant component is that the overall music collaboration network has become more integrated over time. As the network evolves, more artists appear to join the giant component, meaning their collaborations now link them into the broader, shared network. This could potentially reflect a general trend in the music industry, that the rise of global platforms like Spotify have contributed in facilitating collaborations, making it easier to co-release songs.

5.3Genre Evolution

Figure 6 shows the evolution of mean betweenness centrality scores by genre from 1996 to 2016. Two key patterns stand out. First, genres like hip-hop and r&b consistently rank higher than others, particularly from the early 2000s onward. This suggests that artists in these genres frequently act as bridges or as facilitators of collaborating within the network. Their central structural role may reflect a more collaborative culture of these genres. On the other hand, genres like classical, country, and folk-world remain consistently lower in betweenness centrality. These genres may be more self-contained, with fewer collaborations in general, or less represented in global digital platforms.

Secondly, there is a general upward trend in mean betweenness centrality scores across most genres throughout the time period. This could indicate, that some artists are increasingly occupying structurally important positions. This can happen when the network relies more heavily on specific individuals to link otherwise separate parts of the graph together.

Figure 6 — Mean betweenness centrality of the different main genres throughout the years.

In summary, although collaboration frequency increases over time, as shown by the rising collaboration percentage, this does not result in a proportionate rise in average degree. This suggests that while artists are collaborating more, they often do so within familiar circles, reinforcing existing relationships rather than forming new ones.

At the same time, the growth of the giant component and the convergence of the power-law exponent indicate that the network is becoming more globally integrated. More artists are connected to the broader network, but the mean betweenness centrality suggests that smaller number of them take on increasingly important roles in holding the network together.

So while the network as a whole may not be significantly denser in terms of local connections per artist, it is becoming more structurally centralized, with collaboration more facilitated through key artists who act as bridges. This reflects a shift toward a more hierarchical structure, where a few highly connected artists serve as access points between otherwise distinct groups of artists.

5.4High Collaboration Artists

This section highlights the most prominent collaborators in the network, identified through high scores in both entropy and betweenness centrality. Appendix 8.2 provides a year-by-year overview of the top 10 artists for each metric. Several artists stood out by ranking in the top 10 for both measures in the same year — indicating not only a high degree of stylistic diversity in their collaborations but also a structurally central position in the network. Those who were among the top 10 artists in both measures include Donald Fraser and Berliner Philharmoniker (1996), JAY-Z (1998), Xzibit (2000), Jadakiss and Diddy (2001), Linkin Park (2002), Snoop Dogg (2006), Akon (2008), Busta Rhymes and Lil Wayne (2009), Pitbull (2010), Tiësto (2012), Dido and French Montana (2013), Yellow Claw (2015), Ty Dolla $ign and French Montana (2016).

Some artists appeared in the top 10 across multiple decades, showing a long-term presence in music collaborations. Among all, Snoop Dogg had the most total appearances, showing up 14 times between 2000 and 2016. Close behind was Indian film composer A.R. Rahman, who appeared 12 times from 1999 to 2016. Figure 7 visualizes the two-hop collaboration network centered around Snoop Dogg in 2011. Edge and node colors represents the different main genres of Snoop Dogg's neighborhood.

Figure 7 — Two-hop collaboration network centered on Snoop Dogg in 2011. Appendix 8.3 has a full size version with artist labels.

A few others also stood out for their decade-spanning relevance. Shankar Mahadevan and the trio Shankar-Ehsaan-Loy related to the scene of Indian soundtrack, appeared in the early 2000s and showed up again in later years. Ludacris made it to the list in the early 2000s and again in the mid-2010s, pointing to a career with sustaining impact. While artists like Too $hort only show up a couple of times, they still span a wide time range, hinting at a lasting, if more occasional, impact on the collaboration scene.

6Discussion

In this discussion, I will reflect on how the results can be interpreted, consider alternative approaches that could have been taken, address limitations and what did not go as planned.

To answer how the structure and volume of collaborations has changed throughout the years, the results show, that collaborations in music have increased significantly over the 30-year period studied. The raw collaboration percentage rose from around 11% in 1986 to over 25% in 2016. However, the average degree for artists did not grow nearly as much, which suggests that while more collaborations are happening, they often take place within the same circles. It might have been helpful to include edge weights in this part of the analysis, as they were in the end not used at all. These could potentially have helped explain, why the overall percentage of collaborations increase but the distinct collaborators of an artist does not.

The growing size of the giant component further indicates that more artists are becoming part of a shared, interconnected collaboration space. Combined with the convergence of power-law exponents between the full graph and the giant component, this suggests that the network is becoming more globally integrated. At the same time, the average betweenness centrality is increasing across nearly all genres. This could indicate that integration is not happening evenly, but rather through a smaller number of key artists who act as bridges between different groups or clusters. The network does not seem to become uniformly denser, instead, it is becoming more structurally centralized around influential artists.

Entropy was used in this project to quantify how genre-diverse an artist's collaboration neighborhood is, and how stylistically broad their connections are. While this gives some insight at the individual artist level, it's still fair to question how well this approach actually works in this context.

Figure 8 — Entropy distribution of the period 1996 to 2016.
Figure 9 — A null model with randomized genres on the nodes.

To investigate this, entropy was calculated on the full network — not as yearly snapshots, in order to get a larger and more stable dataset. Figure 8 shows the distribution of entropy scores for all artists across the full period. The idea to use entropy in this way is inspired by Silva et al. [11], who applied it in academic citation networks to measure the interdisciplinarity of journals. Based on that, I had hoped the distribution would follow a power-law shape, similar to how degree distributions often do in network analysis.

However, the resulting entropy distribution showed clear plateaus, especially around values at 0.69, 1.11, and 1.60. These correspond to log-based values of 1, 2, and 3, which makes sense, since many low-degree artists in the dataset are only annotated with one, two, or three genres. To check whether the entropy calculations themselves were working correctly, Figure 9 shows a null model, where the number of genres per artist was kept the same, but the genres were randomly shuffled across nodes.

The null model shows plateaus around the same values as the actual distribution, but overall follows a smoother curve, more in line with what you would expect from randomized data. This suggests that the entropy was calculated correctly. However, it also suggests that the entropy measure is less effective in this dataset than hoped, mainly because many artists simply do not have enough genre labels to produce a meaningful spread. In contrast, the citation networks studied by Silva et al. [11] involve hundreds of citations per journal, which provides much richer data to work with. Here, the relatively small number of genre annotations per artist limits how much insight entropy can provide on its own.

Despite these issues, ranking artists by betweenness centrality and entropy ended up highlighting several well-known artists, for example, Snoop Dogg and JAY-Z. So even though there were some challenges with how well the chosen metrics capture diversity or bridge-building roles, it is still satisfying to see artists like these stand out in the results. Both can be argued to have played major roles in shaping the mainstream music scene and have had careers marked by genre shifts and collaborations across musical boundaries.

6.1Limitations

One important discussion point concerns the dataset itself, which presented several challenges from the beginning due to inconsistent metadata. For example, classical composers were filtered out during preprocessing, as they are long deceased and their inclusion introduced noise in the data. Despite these efforts, a significant amount of unintended content remains. In particular, aggregated Spotify profiles such as Various Artists or Traditional caused problems. These profiles often have millions of monthly listeners and scored highly on metrics like entropy and betweenness centrality, even though they don't represent a single, real artist, but rather a collection of different contributors. In such cases, it was difficult to identify the actual artist behind a release, which made the interpretation of results more complicated.

Beyond the metadata itself, the size and balance of the dataset across time also raise questions. The earliest years, especially from 1986 to 1996, are heavily underrepresented compared to later periods. This makes it difficult to assess whether patterns observed in those early years, such as spikes or drops in average degree or power-law exponents, reflect real structural properties or are simply due to limited data. Similarly, as the dataset grows larger in the 2000s and 2010s, it becomes harder to say whether the convergence of metrics like the power-law coefficient is driven by actual changes in the collaboration network or just the effect of more data smoothing out variation.

Another limitation relates to how genres were handled. In this project, all genre labels were manually grouped into a smaller set of supergenres based on my personal judgment. But what qualifies as a supergenre is subjective, and the grouping process could have been more robust. One solution could be, to have queried an external service for assistance. For example, McDonald has developed a tool that, for each Spotify genre, provides a ranked list of the most similar genres based on audio features and listening patterns [18].

The dataset also contained several other fields that could have been interesting to explore. For example, the popularity metric ended up not being used at all, but it could have been relevant to study whether there is a structural connection between collaboration patterns and artist success. It might have been possible to compare how different types of collaboration relate to popularity. Popularity is just one of many data points available through Spotify's API. Other features like tempo, speechiness, energy, and acousticness could also have been used to e.g. classify genres in a more data-driven way, rather than relying only on manual grouping.

Another thing worth discussing is the choice of how the network was modeled over time. In this project, each graph snapshot was built per year, meaning that edges only reflect collaborations that happened within that specific year. While this gives a clean and simple view of the network's evolution, it also means some information is lost, for example, longer-term or repeated collaborations across years are not captured. An alternative approach could have been to model the graph in an accumulative way, where collaborations persist across the years. This or other temporal modeling choices, could especially have brought more insights when analyzing the individual artists collaborations, and in general might have given a different picture of connectivity over time.

In summary, this project shows how network-based metrics can reveal patterns in music collaborations. Despite certain methodological and data-related challenges, the study demonstrates use of network analysis to provides a structured way to examine how artists connect, how collaboration evolves over time, and how roles such as influence and diversity can be quantified, highlighting the value of using network science to understand dynamics of music.

7Conclusion

This project set out to examine the evolution and structure of music collaboration networks from 1986 to 2016 by modeling artist relationships as a temporal graph. Through a combination of structural metrics, such as degree distribution, giant component size and power-law exponents, as well as node-oriented measures such as betweenness centrality and entropy, the analysis provided insight into how collaboration patterns have changed over time.

The results show that the network has become increasingly connected, with more artists joining the giant component and overall collaboration frequency rising. However, this growth has not translated into a uniformly denser network. Instead, the results suggest a shift toward greater structural centralization, where a smaller number of highly connected artists play a key role in holding the network together. Betweenness centrality suggests the emergence of such bridge-building artists, particularly in genres like Hip-Hop and R&B.

Inspired by similar uses of entropy in interdisciplinary research, entropy was here used to explore genre diversity in collaborations of artists. When paired with centrality, it helped identify artists with both stylistic breadth and structural importance.

Overall, this study demonstrates how network science can offer valuable perspectives on artistic collaboration and genre dynamics in musical collaboration networks. While some limitations, especially around data quality and genre handling affected the insights, the project still provides a meaningful approach to studying structural and temporal patterns in music collaboration networks. Network metrics are shown to be useful for reasoning about artists influence, connectivity, and diversity, and they help frame music not only as an artistic product but as a connected, evolving system shaped by patterns of collaboration.

References

  1. [1]Michele Coscia. Node Attribute Analysis for Cultural Data Analytics: A Case Study on Italian XX-XXI Century Music. Appl Netw Sci 9, 2024. Link
  2. [2]Maximilian Schich, Juyong Park, Doheum Park, Arram Bae. Topology and evolution of the network of western classical music composers. EPJ Data Science, 2015. Link
  3. [3]Manuel Burghardt, Lukas Gienapp, Clara Kruckenberg. Topological properties of music collaboration networks: The case of Jazz and Hip Hop. Digital Humanities Quarterly, 2021. Link
  4. [4]Danilo B. Seufitelli, Anisio Lacerda, Mirella M. Moro, Gabriel P. Oliveira, Mariana O. Silva. Detecting Collaboration Profiles in Success-Based Music Genre Networks. International Society for Music Information Retrieval, 2020. Link
  5. [5]Vincent Po, Daniel Wood, Erica Wu, Akash Levy, Sunny He. The Musical Collaboration Graph. 2017. Link
  6. [6]Pietro Panzarasa, Tore Opsahl. Clustering in weighted networks, page 155-163. Social Networks 31, 2009. Link
  7. [7]Jörn Grahl, Pascal Budner. Collaboration Networks in the Music Industry. 2016. Link
  8. [8]Loet Leydesdorff. Betweenness as an Indicator of the Interdisciplinarity of Scientific Journals. Journal of the American Society for Information Science and Technology, 2007. Link
  9. [9]Ulrik Brandes. A Faster Algorithm for Betweenness Centrality. 2001. Link
  10. [10]David A. Bader, Shiva Kintali, Kamesh Madduri, Milena Mihail. Approximating Betweenness Centrality. 2007. Link
  11. [11]F.N. Silva, F.A. Rodrigues, O.N. Oliveira Jr, L. da F. Costa. Quantifying the interdisciplinarity of scientific journals and fields, pages 469-477. Journal of Informetrics, Volume 7, Issue 2, 2013. Link
  12. [12]Qi Wang, Jesper Wiborg Schneider. Consistency and validity of interdisciplinarity measures. 2020. Link
  13. [13]Spotify, Johannes Kepler University, The University of Massachusetts. Spotify Million Playlist Dataset Challenge. Spotify, 2020. Link
  14. [14]Spotify. Spotify Web API. Spotify, 2025. Link
  15. [15]Rosie Pentreath. The 30 greatest classical music composers of all time. Classic.fm, 2020. Link
  16. [16]Michele Coscia. The Atlas for the Aspiring Network Scientist, page 114. 2025. Link
  17. [17]Jeff Alstott, Ed Bullmore, Dietmar Plenz. powerlaw: A Python Package for Analysis of Heavy-Tailed Distributions. 2014. Link
  18. [18]Glenn McDonald. Every Noise at Once. 2025. Link

8Appendix

8.1Super-Genre Tree Map Plot

Distribution of the 673 unique genres present in the data, grouped into nine supergenres and sized by frequency.

8.2Top 10 Scoring Artists

Table 3 — Top 10 artists ranked by betweenness centrality and entropy, for every year from 1996 to 2016.

View Table 3

8.32-Hop Neighborhood

Figure 11 — Two-hop collaboration network centered on Snoop Dogg in 2011. Node sizes reflect degree; edge thickness represents collaboration weight; node colors indicate genre.
Erik Malmqvist
Jakobsen