Kossisoroyce commited on
Commit
7f36c13
·
verified ·
1 Parent(s): 0ac6ef5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +188 -0
README.md ADDED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - feature-extraction
5
+ language:
6
+ - en
7
+ tags:
8
+ - music
9
+ - african-music
10
+ - artists
11
+ - curated
12
+ - top-artists
13
+ size_categories:
14
+ - n<1K
15
+ pretty_name: Spotify-Africa Analysis-Ready Artists
16
+ ---
17
+
18
+ # Spotify-Africa Analysis-Ready Artists
19
+
20
+ ## Dataset Description
21
+
22
+ Top 30 African artist metadata with complete information, ideal for artist-focused research and network analysis.
23
+
24
+ ### Dataset Details
25
+
26
+ - **Language:** English
27
+ - **License:** CC-BY-4.0 (Creative Commons Attribution 4.0 International)
28
+ - **Source:** Spotify Web API
29
+ - **Collection Period:** 2025
30
+ - **Geographic Coverage:** Africa (5 regions: West, East, Southern, Central, North)
31
+
32
+ ## Dataset Structure
33
+
34
+ ### Data Fields
35
+
36
+ This dataset includes comprehensive metadata about African music tracks and artists:
37
+
38
+ **Core Metadata:**
39
+ - Track identifiers (track_id, track_name, ISRC)
40
+ - Artist information (artist_id, artist_name, genres, popularity)
41
+ - Album details (album_id, album_name, album_type, release_date)
42
+ - Technical specs (duration_ms, explicit, preview_url)
43
+
44
+ **Enrichment Features:**
45
+ - **Regional metadata:** country, region inference
46
+ - **Temporal classifications:** release_era, release_decade, track_age_years
47
+ - **Popularity metrics:** popularity_tier, market_scope, region_popularity_percentile
48
+ - **Collaboration detection:** has_collab, collab_count
49
+ - **Genre consolidation:** primary_genre, genre_tags (15+ standardized African genres)
50
+ - **Streaming analytics:** streaming_potential (0-100 score), market_penetration
51
+ - **Duration categorization:** duration_category (Short/Standard/Long/Extended)
52
+ - **Track features:** track_name_length, has_parentheses, track_position
53
+
54
+ ### Data Splits
55
+
56
+ This dataset contains a single split:
57
+ - **train:** All available data
58
+
59
+ ### File Formats
60
+
61
+ - **CSV:** Human-readable format for general use
62
+ - **Parquet:** Compressed, type-safe format for efficient loading
63
+
64
+ ## Usage
65
+
66
+ ### Loading the Dataset
67
+
68
+ ```python
69
+ from datasets import load_dataset
70
+
71
+ # Load dataset
72
+ dataset = load_dataset("electricsheepafrica/analysis_ready_artists")
73
+ df = dataset['train'].to_pandas()
74
+
75
+ print(f"Loaded {len(df):,} rows")
76
+ print(df.head())
77
+ ```
78
+
79
+ ### Direct File Access
80
+
81
+ ```python
82
+ import pandas as pd
83
+
84
+ # Load from CSV
85
+ df = pd.read_csv("hf://datasets/electricsheepafrica/analysis_ready_artists/*.csv")
86
+
87
+ # Load from Parquet (faster)
88
+ df = pd.read_parquet("hf://datasets/electricsheepafrica/analysis_ready_artists/*.parquet")
89
+ ```
90
+
91
+ ## Dataset Statistics
92
+
93
+ - **Data Quality:** 92% metadata completeness
94
+ - **Deduplication:** All tracks deduplicated across sources
95
+ - **Validation:** All Spotify IDs validated
96
+ - **Coverage:** Spans 67 years of African music (1958-2025)
97
+
98
+ ## Research Applications
99
+
100
+ This dataset is ideal for:
101
+
102
+ - **Music Information Retrieval:** Genre classification, similarity detection
103
+ - **Machine Learning:** Popularity prediction, streaming success modeling
104
+ - **Network Analysis:** Artist collaboration patterns
105
+ - **Cultural Studies:** African music evolution and globalization
106
+ - **Market Research:** Regional preferences, distribution strategies
107
+
108
+ ## Standardized Genres
109
+
110
+ The dataset includes 15+ consolidated African music genres:
111
+
112
+ - **Afrobeats** - Contemporary West African pop fusion
113
+ - **Amapiano** - South African house/jazz hybrid
114
+ - **Afropop** - Pan-African popular music
115
+ - **Afro House** - African electronic dance music
116
+ - **Highlife** - West African guitar-based music
117
+ - **Bongo Flava** - Tanzanian hip-hop/R&B fusion
118
+ - **Gqom** - South African electronic/house
119
+ - **Kwaito** - South African township music
120
+ - **Gengetone** - Kenyan hip-hop fusion
121
+ - **Afro-Fusion** - Contemporary genre-blending
122
+ - **Azonto** - Ghanaian dance music
123
+ - **Soukous** - Central African dance music
124
+ - **Mbalax** - Senegalese pop music
125
+ - **Afro Drill** - African drill rap
126
+ - **Alte** - Alternative Afrobeats
127
+
128
+ ## Citation
129
+
130
+ If you use this dataset in your research, please cite:
131
+
132
+ ```bibtex
133
+ @dataset{spotify_africa_analysis_ready_artists_2025,
134
+ title={Spotify-Africa Analysis-Ready Artists: African Music Metadata from Spotify},
135
+ author={Electric Sheep Africa},
136
+ year={2025},
137
+ publisher={Hugging Face},
138
+ howpublished={\url{https://huggingface.co/datasets/electricsheepafrica/analysis_ready_artists}}
139
+ }
140
+ ```
141
+
142
+ ## License
143
+
144
+ This dataset is released under **CC BY 4.0** (Creative Commons Attribution 4.0 International).
145
+
146
+ **You are free to:**
147
+ - Share — copy and redistribute the material
148
+ - Adapt — remix, transform, and build upon the material
149
+ - Use commercially — for any purpose
150
+
151
+ **Under the following terms:**
152
+ - Attribution — You must give appropriate credit and indicate if changes were made
153
+
154
+ ## Collection
155
+
156
+ This dataset is part of the **Spotify-Africa Music Research Collection**:
157
+ https://huggingface.co/collections/electricsheepafrica/spotify-africa-music-research-69038be619ca34d864018cda
158
+
159
+ ### Related Datasets
160
+
161
+ Explore other datasets in the collection:
162
+ - **master_tracks** - Primary unified dataset (recommended)
163
+ - **tracks** - Main enriched tracks
164
+ - **artist_summary** - Artist-level aggregations
165
+ - **region_summary** - Regional statistics
166
+ - **analysis_ready_tracks** - Clean subset for tutorials
167
+ - **scaled_tracks** - Large-scale collection
168
+ - **popular_tracks** - Top hits
169
+
170
+ ## Ethical Considerations
171
+
172
+ - **Data Source:** All data collected from public Spotify Web API
173
+ - **Privacy:** No user data or listening history included
174
+ - **Representation:** Strives for geographic and genre diversity
175
+ - **Bias:** May reflect Spotify's platform availability and market penetration in Africa
176
+ - **Cultural Sensitivity:** African music genres standardized with respect to local naming
177
+
178
+ ## Contact
179
+
180
+ - **Organization:** Electric Sheep Africa
181
+ - **Repository:** https://huggingface.co/datasets/electricsheepafrica/analysis_ready_artists
182
+ - **Collection:** https://huggingface.co/collections/electricsheepafrica/spotify-africa-music-research-69038be619ca34d864018cda
183
+
184
+ For questions or collaborations, please use the repository discussions or issues.
185
+
186
+ ---
187
+
188
+ **Explore African Music. Celebrate Diversity. Amplify Voices.** 🌍🎵