ronantakizawa commited on
Commit
434c8cb
·
verified ·
1 Parent(s): 618f80b

Set monthly as default config and reorder documentation

Browse files
Files changed (1) hide show
  1. README.md +20 -19
README.md CHANGED
@@ -15,10 +15,11 @@ tags:
15
  size_categories:
16
  - 100K<n<1M
17
  configs:
18
- - config_name: full
19
- data_files: "full/data.csv"
20
  - config_name: monthly
21
  data_files: "monthly/data.csv"
 
 
 
22
  ---
23
 
24
  # GitHub Trending Projects (2013-2025)
@@ -44,23 +45,7 @@ This dataset captures the evolution of GitHub's trending repositories over time,
44
 
45
  This dataset has **two configurations** defined in the YAML header:
46
 
47
- ### Configuration: `full` (Default)
48
- Complete daily trending data with 423,098 entries
49
-
50
- ```python
51
- from datasets import load_dataset
52
- ds = load_dataset('ronantakizawa/github-top-projects', 'full')
53
- ```
54
-
55
- **Columns:**
56
- - `name` (string): Repository name
57
- - `star_count` (int): Star count (may be empty for pre-2020)
58
- - `fork_count` (int): Fork count (may be empty for pre-2020)
59
- - `repo_owner` (string): Repository owner/organization
60
- - `rank` (int): Position in trending (1-25)
61
- - `date` (string): Snapshot date (YYYY-MM-DD)
62
-
63
- ### Configuration: `monthly`
64
  Top 25 repositories per month with 3,200 entries
65
 
66
  ```python
@@ -78,6 +63,22 @@ ds = load_dataset('ronantakizawa/github-top-projects', 'monthly')
78
  - `fork_count` (int): Maximum recorded forks
79
  - `ranking_appearances` (int): Times appeared in trending that month
80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  ## 🏆 Scoring Methodology
82
 
83
  Monthly rankings use a **weighted frequency and position-based scoring system**:
 
15
  size_categories:
16
  - 100K<n<1M
17
  configs:
 
 
18
  - config_name: monthly
19
  data_files: "monthly/data.csv"
20
+ default: true
21
+ - config_name: full
22
+ data_files: "full/data.csv"
23
  ---
24
 
25
  # GitHub Trending Projects (2013-2025)
 
45
 
46
  This dataset has **two configurations** defined in the YAML header:
47
 
48
+ ### Configuration: `monthly` (Default)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  Top 25 repositories per month with 3,200 entries
50
 
51
  ```python
 
63
  - `fork_count` (int): Maximum recorded forks
64
  - `ranking_appearances` (int): Times appeared in trending that month
65
 
66
+ ### Configuration: `full`
67
+ Complete daily trending data with 423,098 entries
68
+
69
+ ```python
70
+ from datasets import load_dataset
71
+ ds = load_dataset('ronantakizawa/github-top-projects', 'full')
72
+ ```
73
+
74
+ **Columns:**
75
+ - `name` (string): Repository name
76
+ - `star_count` (int): Star count (may be empty for pre-2020)
77
+ - `fork_count` (int): Fork count (may be empty for pre-2020)
78
+ - `repo_owner` (string): Repository owner/organization
79
+ - `rank` (int): Position in trending (1-25)
80
+ - `date` (string): Snapshot date (YYYY-MM-DD)
81
+
82
  ## 🏆 Scoring Methodology
83
 
84
  Monthly rankings use a **weighted frequency and position-based scoring system**: