ZelonPrograms commited on
Commit
997d854
·
verified ·
1 Parent(s): 8af1fd6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -0
README.md CHANGED
@@ -1,3 +1,68 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+ # 🧑‍💻 Roblox Player Dataset
5
+
6
+ A structured dataset containing anonymized public information about Roblox users — great for social analysis, engagement modeling, or community visualization!
7
+
8
+ ---
9
+
10
+ ## 📦 Overview
11
+
12
+ Each record represents a unique Roblox user, including data about their profile, social stats, and group activity.
13
+
14
+ ### 🔑 Fields
15
+
16
+ | Field | Description |
17
+ |-------|-------------|
18
+ | `User ID` | Unique numerical identifier for the user |
19
+ | `Username` | Roblox account username |
20
+ | `Display Name` | Public-facing display name |
21
+ | `Description` | Profile bio or status (may be empty) |
22
+ | `Created` | Account creation date (ISO 8601 format) |
23
+ | `Is Banned` | `True` if account is banned |
24
+ | `Has Verified Badge` | `True` if user has a verified badge |
25
+ | `Friends Count` | Number of friends the user has |
26
+ | `Followers Count` | Number of users following this user |
27
+ | `Following Count` | Number of users this account follows |
28
+ | `Presence` | Online status at time of capture |
29
+ | `Groups` | Groups the user is part of (with role/rank info) |
30
+ | `Avatar Url` | Link to user's avatar (if available) |
31
+
32
+ ---
33
+
34
+ ## 🎯 Use Cases
35
+
36
+ - 📊 **Data visualization** of Roblox user trends
37
+ - 🧠 **AI models** for engagement prediction or account classification
38
+ - 🤝 **Social graph analysis** of Roblox communities
39
+ - 🧪 Fun ML experiments with public gaming data
40
+
41
+ ---
42
+
43
+ ## 📂 Format
44
+
45
+ - CSV format, UTF-8 encoded
46
+ - Timestamps use `UTC` and `ISO 8601` (`YYYY-MM-DDTHH:MM:SSZ`)
47
+ - Booleans are `True` / `False`
48
+
49
+ ---
50
+
51
+ ## 🧪 Example Record
52
+
53
+ ```json
54
+ {
55
+ "User ID": 99428063,
56
+ "Username": "cy4nogen",
57
+ "Display Name": "cy4nogen",
58
+ "Description": "",
59
+ "Created": "2015-11-22T17:30:55.923Z",
60
+ "Is Banned": false,
61
+ "Has Verified Badge": false,
62
+ "Friends Count": 13,
63
+ "Followers Count": 0,
64
+ "Following Count": 0,
65
+ "Presence": "Offline",
66
+ "Groups": "Roblox High School: Fan Club (Rank: Cool Fan II)",
67
+ "Avatar Url": ""
68
+ }