ronantakizawa commited on
Commit
afc74fc
Β·
verified Β·
1 Parent(s): 02b27e9

Add comprehensive insights section with era analysis, top projects, and trends

Browse files
Files changed (1) hide show
  1. README.md +280 -5
README.md CHANGED
@@ -34,6 +34,13 @@ This dataset captures the evolution of GitHub's trending repositories over time,
34
  - **Community interests** and shifts in developer focus over 12 years
35
  - **Viral repository dynamics** and sustained popularity patterns
36
 
 
 
 
 
 
 
 
37
  ## πŸ”§ Dataset Configurations
38
 
39
  This dataset has **two configurations** defined in the YAML header:
@@ -100,10 +107,278 @@ This rewards both **consistency** (frequent appearances) and **position** (highe
100
  **Snapshots:** 17,127 successfully scraped from 19,064 available
101
  **Retry Logic:** Up to 15 retries with exponential backoff
102
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
 
104
- ## πŸ“Š Insights
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
 
106
- **Most Consistently Trending (2020-2025):**
107
- 1. `jwasham/coding-interview-university` - 1,948 appearances
108
- 2. `TheAlgorithms/Python` - 1,891 appearances
109
- 3. `donnemartin/system-design-primer` - 1,865 appearances
 
34
  - **Community interests** and shifts in developer focus over 12 years
35
  - **Viral repository dynamics** and sustained popularity patterns
36
 
37
+ **Key Statistics:**
38
+ - πŸ“Š **423,098** trending repository entries
39
+ - πŸ—‚οΈ **14,500** unique repositories
40
+ - πŸ“… **128 months** of coverage (2013-08 to 2025-11)
41
+ - ⭐ **89.8%** scraping success rate from Wayback Machine
42
+ - πŸ† **Pre-processed monthly rankings** with weighted scoring
43
+
44
  ## πŸ”§ Dataset Configurations
45
 
46
  This dataset has **two configurations** defined in the YAML header:
 
107
  **Snapshots:** 17,127 successfully scraped from 19,064 available
108
  **Retry Logic:** Up to 15 retries with exponential backoff
109
 
110
+ ## ⚠️ Known Limitations
111
+
112
+ ### 1. **Missing Star/Fork Data (Pre-2020)**
113
+ - **100% of 2013-2019 entries** lack star/fork counts
114
+ - Only **67.8% of dataset** has popularity metrics
115
+ - **Impact:** Cannot compare absolute popularity for historical projects
116
+
117
+ ### 2. **Uneven Temporal Distribution**
118
+ - Snapshot frequency: **1 to 31 per month** (31x variance)
119
+ - 2019-2020 heavily over-represented
120
+ - **Impact:** Monthly scores favor periods with more snapshots
121
+
122
+ ### 3. **Star Count Timing Inconsistency**
123
+ - Star counts are "maximum ever recorded" across all snapshots
124
+ - A 2015 project's stars might be from 2025 scraping
125
+ - **Impact:** Can't fairly compare popularity across eras
126
+
127
+ See `DATASET_ISSUES.md` for comprehensive analysis.
128
+
129
+ ## πŸ“ˆ Data Quality by Era
130
+
131
+ | Era | Quality | Star Data | Snapshot Density | Grade |
132
+ |-----|---------|-----------|------------------|-------|
133
+ | **2013-2019** | Limited | ❌ 0% | Low-Medium | **C+** |
134
+ | **2020-2025** | Excellent | βœ… 100% | High | **A-** |
135
+
136
+ **Recommendation:** Use 2020-2025 data for analyses requiring star/fork counts
137
+
138
+ ## πŸ’‘ Usage Examples
139
+
140
+ ### Load with Hugging Face Datasets (Recommended)
141
+
142
+ ```python
143
+ from datasets import load_dataset
144
+
145
+ # Load complete daily dataset (423,098 entries)
146
+ ds_full = load_dataset('ronantakizawa/github-top-projects', 'full')
147
+ df_full = ds_full['train'].to_pandas()
148
+
149
+ # Load monthly top 25 dataset (3,200 entries)
150
+ ds_monthly = load_dataset('ronantakizawa/github-top-projects', 'monthly')
151
+ df_monthly = ds_monthly['train'].to_pandas()
152
+
153
+ # Filter to 2020+ (with star data)
154
+ df_recent = df_full[df_full['date'] >= '2020-01-01']
155
+
156
+ # Get November 2025 top 10
157
+ nov_2025 = df_monthly[df_monthly['month'] == '2025-11'].head(10)
158
+ print(nov_2025[['rank', 'repository', 'star_count', 'ranking_appearances']])
159
+ ```
160
+
161
+ ### Time Series Analysis
162
+
163
+ ```python
164
+ import pandas as pd
165
+ import matplotlib.pyplot as plt
166
+ from datasets import load_dataset
167
+
168
+ ds = load_dataset('ronantakizawa/github-top-projects', 'full')
169
+ df = ds['train'].to_pandas()
170
+ df['date'] = pd.to_datetime(df['date'])
171
+
172
+ # Analyze a specific project over time
173
+ project = 'microsoft/vscode'
174
+ project_df = df[(df['repo_owner'] == 'microsoft') & (df['name'] == 'vscode')]
175
+
176
+ # Plot trending frequency over time
177
+ monthly_counts = project_df.groupby(project_df['date'].dt.to_period('M')).size()
178
+ monthly_counts.plot(title=f'{project} Trending Frequency')
179
+ plt.ylabel('Days in Trending')
180
+ plt.show()
181
+ ```
182
+
183
+ ## πŸ” Research Applications
184
+
185
+ This dataset enables analysis of:
186
+
187
+ 1. **Trending Dynamics** - What makes a repository go viral?
188
+ 2. **Technology Adoption** - Rise and fall of programming languages
189
+ 3. **Open Source Evolution** - Growth of educational repositories
190
+ 4. **Predictive Modeling** - Forecasting future trending projects
191
+ 5. **Developer Behavior** - Community interest shifts
192
+
193
+ ## 🌟 Key Insights
194
+
195
+ ### 1. All-Time Top 10 Projects (2013-2025)
196
+
197
+ | Rank | Repository | Total Score | Months in Top 25 | Total Trending Days | Best Rank |
198
+ |------|------------|-------------|------------------|---------------------|-----------|
199
+ | 1 | **TheAlgorithms/Python** | 379 | 24 (2.0 years) | 1,383 | #1 |
200
+ | 2 | **tensorflow/tensorflow** | 322 | 20 (1.7 years) | 88 | #1 |
201
+ | 3 | **jwasham/coding-interview-university** | 295 | 21 (1.8 years) | 1,254 | #1 |
202
+ | 4 | **public-apis/public-apis** | 279 | 18 (1.5 years) | 937 | #1 |
203
+ | 5 | **donnemartin/system-design-primer** | 249 | 18 (1.5 years) | 727 | #1 |
204
+ | 6 | **EbookFoundation/free-programming-books** | 237 | 17 (1.4 years) | 772 | #1 |
205
+ | 7 | **FreeCodeCamp/FreeCodeCamp** | 229 | 10 (0.8 years) | 41 | #1 |
206
+ | 8 | **freeCodeCamp/freeCodeCamp** | 228 | 12 (1.0 years) | 408 | #1 |
207
+ | 9 | **trekhleb/javascript-algorithms** | 228 | 15 (1.2 years) | 692 | #1 |
208
+ | 10 | **kamranahmedse/developer-roadmap** | 189 | 15 (1.2 years) | 495 | #1 |
209
+
210
+ **Notable Pattern:** Educational resources dominate all-time rankings. 8 of the top 10 are learning resources (algorithms, interview prep, system design, free books).
211
+
212
+ ### 2. Recent Champions (2024-2025)
213
+
214
+ #### Monthly Winners
215
+ | Month | Winner | Days Trending | Current Stars | Theme |
216
+ |-------|--------|---------------|---------------|-------|
217
+ | **2025-11** | google/adk-go | 55 | 5,494 | AI Development Kit |
218
+ | **2025-10** | Stremio/stremio-web | 45 | 7,288 | Streaming Platform |
219
+ | **2025-09** | microsoft/markitdown | 63 | 79,395 | Markdown Converter |
220
+ | **2025-08** | simstudioai/sim | 36 | 17,812 | AI Simulation |
221
+ | **2025-07** | NanmiCoder/MediaCrawler | 32 | 28,058 | Media Scraping |
222
+ | **2024-12** | lobehub/lobe-chat | 36 | 66,763 | AI Chat Interface |
223
+ | **2024-11** | abi/screenshot-to-code | 40 | 67,774 | AI Code Generation |
224
+ | **2024-10** | TheAlgorithms/Python | 34 | 212,762 | Algorithm Learning |
225
+
226
+ #### Top New Projects (First Appeared 2024+)
227
+ 361 new projects entered the top 25 in 2024-2025:
228
 
229
+ | Rank | Repository | Score | Months | Theme |
230
+ |------|------------|-------|--------|-------|
231
+ | 1 | **virattt/ai-hedge-fund** | 96 | 5 | AI Finance Tools |
232
+ | 2 | **microsoft/markitdown** | 72 | 3 | Document Conversion |
233
+ | 3 | **hacksider/Deep-Live-Cam** | 68 | 3 | AI Video Processing |
234
+ | 4 | **harry0703/MoneyPrinterTurbo** | 67 | 4 | AI Content Generation |
235
+ | 5 | **Shubhamsaboo/awesome-llm-apps** | 66 | 4 | LLM Applications |
236
+
237
+ ### 3. Era Analysis: Technology Trend Shifts
238
+
239
+ #### 2013-2014: Web Framework Era
240
+ - **Dominant:** Bootstrap, Angular.js, jQuery
241
+ - **Top 3:** `twbs/bootstrap` (84), `atom/atom` (75), `angular/angular.js` (63)
242
+ - **Trend:** Frontend frameworks and UI libraries ruled
243
+
244
+ #### 2015-2017: Framework Wars
245
+ - **Dominant:** FreeCodeCamp, TensorFlow, Vue.js
246
+ - **2016 Champion:** `FreeCodeCamp/FreeCodeCamp` (220 score, 9 months at #1)
247
+ - **2017 Champion:** `tensorflow/tensorflow` (213 score, 12 months presence)
248
+ - **Trend:** Education platforms + rise of ML frameworks
249
+
250
+ #### 2018-2019: Algorithm Renaissance
251
+ - **Dominant:** Educational algorithm repositories
252
+ - **Top:** `trekhleb/javascript-algorithms`, `Snailclimb/JavaGuide`
253
+ - **Viral Hit:** `996icu/996.ICU` (148 days trending in April 2019)
254
+ - **Trend:** Shift from tools to learning resources
255
+
256
+ #### 2020-2021: Learning Platform Dominance
257
+ - **Dominant:** Interview prep and public APIs
258
+ - **COVID Impact:** `CSSEGISandData/COVID-19` (356 days trending in March 2020!)
259
+ - **Top:** `public-apis/public-apis` (114 score in 2021)
260
+ - **Trend:** Remote work drove demand for learning materials
261
+
262
+ #### 2022-2023: AI/ML Explosion
263
+ - **Q3 2022:** Stable Diffusion era (`AUTOMATIC1111/stable-diffusion-webui`)
264
+ - **Q4 2022 - 2023:** ChatGPT impact (`f/awesome-chatgpt-prompts`: 113 days in Dec 2022)
265
+ - **Top AI Projects:** `AntonOsika/gpt-engineer`, `imartinez/privateGPT`, `xtekky/gpt4free`
266
+ - **Trend:** Generative AI democratization
267
+
268
+ #### 2024-2025: Specialized AI Tools Era
269
+ - **Dominant:** Practical AI applications
270
+ - **Top:** `codecrafters-io/build-your-own-x` (82 score), `lobehub/lobe-chat` (72)
271
+ - **Microsoft Surge:** 87 Microsoft repos appeared (46 unique projects)
272
+ - **Trend:** From AI experimentation to production tools
273
+
274
+ ### 4. Viral Phenomenon: Record-Breaking Trending Periods
275
+
276
+ **Most Trending Days in a Single Month:**
277
+ 1. **CSSEGISandData/COVID-19** - 356 days (March 2020) - *COVID data tracker*
278
+ 2. **denoland/deno** - 205 days (May 2020) - *Node.js alternative*
279
+ 3. **TheAlgorithms/Python** - 196 days (May 2020) - *Algorithm implementations*
280
+ 4. **TheAlgorithms/Python** - 186 days (May 2019)
281
+ 5. **jackfrued/Python-100-Days** - 179 days (May 2019) - *Python tutorial*
282
+
283
+ **Insight:** March-May 2020 saw unprecedented trending activity due to COVID-19 lockdowns and remote work transition.
284
+
285
+ ### 5. Top Organizations & Developers
286
+
287
+ #### Most Prolific Organizations (Unique Repos in Top 25)
288
+ | Organization | Appearances | Unique Repos | Notable Projects |
289
+ |--------------|-------------|--------------|------------------|
290
+ | **microsoft** | 87 | 46 | generative-ai-for-beginners, Web-Dev-For-Beginners |
291
+ | **google** | 43 | 30 | googletest, adk-go, tensorflow |
292
+ | **TheAlgorithms** | 35 | 5 | Python, Java, JavaScript, C++, Go |
293
+ | **tensorflow** | 22 | 3 | tensorflow, models, examples |
294
+ | **facebook** | 21 | 13 | react, react-native, nuclide |
295
+
296
+ #### Consistent Individual Developers
297
+ | Developer | Projects | Months | Key Work |
298
+ |-----------|----------|--------|----------|
299
+ | **jwasham** | 2 | 24 | coding-interview-university |
300
+ | **trekhleb** | 3 | 18 | javascript-algorithms, homemade-machine-learning |
301
+ | **donnemartin** | 1 | 18 | system-design-primer |
302
+ | **kamranahmedse** | 2 | 16 | developer-roadmap |
303
+ | **sindresorhus** | 3 | 15 | awesome, quick-look-plugins |
304
+
305
+ ### 6. Project Categories: What Trends on GitHub?
306
+
307
+ **Educational Resources** (35% of top 25)
308
+ - Algorithm learning: TheAlgorithms/*, trekhleb/javascript-algorithms
309
+ - Interview prep: jwasham/coding-interview-university, yangshun/tech-interview-handbook
310
+ - Learning paths: kamranahmedse/developer-roadmap, EbookFoundation/free-programming-books
311
+ - Courses: microsoft/generative-ai-for-beginners, microsoft/Web-Dev-For-Beginners
312
+
313
+ **Development Tools** (25% of top 25)
314
+ - Code editors: atom/atom, microsoft/vscode
315
+ - Build tools: codecrafters-io/build-your-own-x
316
+ - APIs: public-apis/public-apis
317
+
318
+ **AI/ML Projects** (20% of top 25, surging in 2024-2025)
319
+ - Chat interfaces: lobehub/lobe-chat, abi/screenshot-to-code
320
+ - Generation tools: AUTOMATIC1111/stable-diffusion-webui, hacksider/Deep-Live-Cam
321
+ - LLM applications: Shubhamsaboo/awesome-llm-apps, virattt/ai-hedge-fund
322
+
323
+ **Frameworks** (15% of top 25)
324
+ - Frontend: vuejs/vue, facebook/react, twbs/bootstrap
325
+ - Backend: tensorflow/tensorflow, flutter/flutter
326
+
327
+ **Utilities & Curations** (5% of top 25)
328
+ - Awesome lists: sindresorhus/awesome
329
+ - Tool collections: Z4nzu/hackingtool
330
+
331
+ ### 7. Longevity vs. Virality
332
+
333
+ **Longevity Leaders** (Most Months in Top 25):
334
+ - `TheAlgorithms/Python`: 24 months (2.0 years)
335
+ - `jwasham/coding-interview-university`: 21 months (1.8 years)
336
+ - `tensorflow/tensorflow`: 20 months (1.7 years)
337
+
338
+ **Viral One-Hit Wonders** (High trending days, short duration):
339
+ - `CSSEGISandData/COVID-19`: 356 days in 1 month, then disappeared
340
+ - `996icu/996.ICU`: 148 days in 1 month (April 2019 protest)
341
+ - `kelseyhightower/nocode`: 75 score across 3 months (2018), then gone
342
+
343
+ **Pattern:** Educational resources sustain; news/events spike and fade.
344
+
345
+ ## πŸ“œ License
346
+
347
+ **MIT License**
348
+
349
+ This dataset is released under the MIT License. You can:
350
+ - βœ… Use for commercial purposes
351
+ - βœ… Modify and distribute
352
+ - βœ… Use in research (attribution appreciated!)
353
+ - βœ… Include in proprietary software
354
+
355
+ ## πŸ™ Acknowledgments
356
+
357
+ - **GitHub** for maintaining the trending page
358
+ - **Internet Archive** for the Wayback Machine
359
+ - **Open Source Community** for creating amazing projects
360
+
361
+ ## πŸ“– Citation
362
+
363
+ If you use this dataset in your research, please cite:
364
+
365
+ ```bibtex
366
+ @dataset{github_trending_2013_2025,
367
+ title={GitHub Trending Projects Dataset (2013-2025)},
368
+ author={Ronan Takizawa},
369
+ year={2025},
370
+ publisher={Hugging Face},
371
+ url={https://huggingface.co/datasets/ronantakizawa/github-top-projects}
372
+ }
373
+ ```
374
+
375
+ ## πŸ“… Updates
376
+
377
+ - **2025-12:** Initial release (2013-08 to 2025-11)
378
+ - Future updates planned quarterly
379
+
380
+ ---
381
 
382
+ **Last Updated:** December 2025
383
+ **Dataset Version:** 1.0
384
+ **Status:** βœ… Complete and ready for use