ihhereanth commited on
Commit
4d52a37
·
verified ·
1 Parent(s): 05ce089

Update dataset card

Browse files
Files changed (1) hide show
  1. README.md +62 -114
README.md CHANGED
@@ -1,116 +1,64 @@
1
  ---
2
- dataset_info:
3
- - config_name: default
4
- features:
5
- - name: universe_id
6
- dtype: int64
7
- - name: place_id
8
- dtype: int64
9
- - name: name
10
- dtype: large_string
11
- - name: genre
12
- dtype: large_string
13
- - name: creator_type
14
- dtype: large_string
15
- - name: creator_id
16
- dtype: int64
17
- - name: creator_name
18
- dtype: large_string
19
- - name: description
20
- dtype: large_string
21
- - name: price
22
- dtype: float64
23
- - name: is_paid
24
- dtype: int64
25
- - name: visits
26
- dtype: int64
27
- - name: playing
28
- dtype: int32
29
- - name: favorited_count
30
- dtype: int64
31
- - name: max_players
32
- dtype: int32
33
- - name: up_votes
34
- dtype: int64
35
- - name: down_votes
36
- dtype: int64
37
- - name: like_pct
38
- dtype: float64
39
- - name: like_ratio
40
- dtype: float64
41
- - name: total_votes
42
- dtype: int64
43
- - name: ccu_visit_ratio
44
- dtype: float64
45
- - name: fav_visit_ratio
46
- dtype: float64
47
- - name: age_days
48
- dtype: int32
49
- - name: universe_avatar_type
50
- dtype: large_string
51
- - name: is_all_genre
52
- dtype: int64
53
- - name: copy_locked
54
- dtype: int64
55
- - name: studio_access_to_apis_allowed
56
- dtype: int64
57
- - name: create_vip_servers_allowed
58
- dtype: int64
59
- - name: is_genre_enforcement_enabled
60
- dtype: int64
61
- - name: created_ts
62
- dtype: large_string
63
- - name: updated_ts
64
- dtype: large_string
65
- - name: captured_at_ts
66
- dtype: large_string
67
- - name: engagement_score
68
- dtype: float64
69
- splits:
70
- - name: train
71
- num_bytes: 118302
72
- num_examples: 300
73
- download_size: 53965
74
- dataset_size: 118302
75
- - config_name: genre_summary
76
- features:
77
- - name: genre
78
- dtype: large_string
79
- - name: game_count
80
- dtype: int64
81
- - name: total_ccu
82
- dtype: int64
83
- - name: avg_ccu
84
- dtype: float64
85
- - name: max_ccu
86
- dtype: int32
87
- - name: avg_visits
88
- dtype: float64
89
- - name: total_visits
90
- dtype: int64
91
- - name: avg_favorites
92
- dtype: float64
93
- - name: avg_like_pct
94
- dtype: float64
95
- - name: avg_ccu_visit_ratio
96
- dtype: float64
97
- - name: avg_age_days
98
- dtype: float64
99
- - name: paid_game_count
100
- dtype: int64
101
- splits:
102
- - name: train
103
- num_bytes: 1377
104
- num_examples: 14
105
- download_size: 6683
106
- dataset_size: 1377
107
- configs:
108
- - config_name: default
109
- data_files:
110
- - split: train
111
- path: data/train-*
112
- - config_name: genre_summary
113
- data_files:
114
- - split: train
115
- path: genre_summary/train-*
116
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ license: cc-by-4.0
5
+ tags:
6
+ - roblox
7
+ - games
8
+ - analytics
9
+ - genre
10
+ pretty_name: Roblox Games Dataset
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  ---
12
+
13
+ # 🎮 Roblox Games Dataset
14
+
15
+ Cleaned dataset of Roblox games collected via the Roblox public API.
16
+
17
+ ## Configurations (Subsets)
18
+
19
+ This dataset contains two configurations with different schemas:
20
+
21
+ | Configuration | Description |
22
+ |---|---|
23
+ | `default` | Cleaned game records (Main Data) |
24
+ | `genre_summary` | Aggregated statistics per genre |
25
+
26
+ ## Fields (default config)
27
+
28
+ | Field | Type | Description |
29
+ |---|---|---|
30
+ | `universe_id` | int | Roblox Universe ID (primary key) |
31
+ | `place_id` | int | Root Place ID |
32
+ | `name` | string | Game name |
33
+ | `genre` | string | Game genre |
34
+ | `creator_type` | string | User / Group |
35
+ | `creator_name` | string | Creator name |
36
+ | `visits` | int | Total visits |
37
+ | `playing` | int | CCU at capture time |
38
+ | `favorited_count` | int | Total favorites |
39
+ | `up_votes` | int | Likes |
40
+ | `down_votes` | int | Dislikes |
41
+ | `like_ratio` | float | upVotes / totalVotes |
42
+ | `ccu_visit_ratio` | float | playing / visits × 100 |
43
+ | `engagement_score` | float | Normalized score 0–1 |
44
+ | `age_days` | int | Days since created |
45
+ | `is_paid` | int | 1 = paid access |
46
+ | `captured_at_ts` | string | Data capture timestamp (UTC) |
47
+
48
+ ## Top Genres by CCU
49
+
50
+ | Genre | Games | Total CCU | Avg Visits |
51
+ |---|---|---|---|
52
+ | Town and City | 29 | 330,896 | 405,174,471 |
53
+ | RPG | 16 | 174,196 | 485,618,535 |
54
+ | Adventure | 33 | 102,558 | 445,817,130 |
55
+ | Comedy | 21 | 80,549 | 436,335,062 |
56
+ | Fighting | 26 | 79,450 | 489,336,853 |
57
+
58
+ ## Source
59
+
60
+ Collected from:
61
+ - [Roblox Games API](https://games.roblox.com/v1/games)
62
+ - [Rolimons Game List](https://api.rolimons.com/games/v1/gamelist)
63
+
64
+ Last updated: 2026-05-04