ronantakizawa commited on
Commit
11cdd5c
·
verified ·
1 Parent(s): 63f1daf

Set yearly as default config and note full dataset sorting

Browse files
Files changed (1) hide show
  1. README.md +3 -2
README.md CHANGED
@@ -18,6 +18,7 @@ size_categories:
18
  configs:
19
  - config_name: yearly
20
  data_files: "yearly/data.csv"
 
21
  - config_name: full
22
  data_files: "full/data.csv"
23
  ---
@@ -58,7 +59,7 @@ ds = load_dataset('ronantakizawa/github-top-developers', 'yearly')
58
  - `popular_repos` (string): Top repositories (comma-separated)
59
 
60
  ### Configuration: `full`
61
- Complete daily trending data with 41,841 entries
62
 
63
  ```python
64
  from datasets import load_dataset
@@ -69,7 +70,7 @@ ds = load_dataset('ronantakizawa/github-top-developers', 'full')
69
  - `name` (string): Developer/organization GitHub username
70
  - `rank` (int): Position in trending (1-25)
71
  - `popular_repo` (string): Associated repository at the time
72
- - `date` (string): Snapshot date (YYYY-MM-DD)
73
 
74
  ## 🏆 Scoring Methodology
75
 
 
18
  configs:
19
  - config_name: yearly
20
  data_files: "yearly/data.csv"
21
+ default: true
22
  - config_name: full
23
  data_files: "full/data.csv"
24
  ---
 
59
  - `popular_repos` (string): Top repositories (comma-separated)
60
 
61
  ### Configuration: `full`
62
+ Complete daily trending data with 41,841 entries (sorted by date: most recent first)
63
 
64
  ```python
65
  from datasets import load_dataset
 
70
  - `name` (string): Developer/organization GitHub username
71
  - `rank` (int): Position in trending (1-25)
72
  - `popular_repo` (string): Associated repository at the time
73
+ - `date` (string): Snapshot date (YYYY-MM-DD, sorted descending)
74
 
75
  ## 🏆 Scoring Methodology
76