ZelonPrograms commited on
Commit
12b1d79
·
verified ·
1 Parent(s): 54f2661

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -0
README.md CHANGED
@@ -7,6 +7,67 @@ language:
7
  - en
8
  size_categories:
9
  - n<1K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  ---
11
  # Roblox User Dataset
12
 
 
7
  - en
8
  size_categories:
9
  - n<1K
10
+ dataset_info:
11
+ id: roblox_user_dataset
12
+ description: |
13
+ This dataset includes user information from the Roblox platform, including various social metrics.
14
+ **Warning**: Not all data may be collected correctly. Users should be aware of this limitation when utilizing the dataset.
15
+ features:
16
+ - name: user_id
17
+ type: int64
18
+ description: Unique identifier for the user.
19
+ - name: username
20
+ type: string
21
+ description: The username of the user.
22
+ - name: display_name
23
+ type: string
24
+ description: The display name of the user.
25
+ - name: bio
26
+ type: string
27
+ description: Biography or personal description of the user.
28
+ - name: created_date
29
+ type: string
30
+ description: The date the account was created (ISO 8601 format).
31
+ - name: is_banned
32
+ type: boolean
33
+ description: Indicates if the user is banned (True/False).
34
+ - name: has_verified_badge
35
+ type: boolean
36
+ description: Indicates if the user has a verified badge (True/False).
37
+ - name: badges_count
38
+ type: int64
39
+ description: Number of badges the user has.
40
+ - name: friends_count
41
+ type: int64
42
+ description: Number of friends the user has.
43
+ - name: followers_count
44
+ type: int64
45
+ description: Number of followers the user has.
46
+ - name: following_count
47
+ type: int64
48
+ description: Number of accounts the user is following.
49
+ - name: groups_count
50
+ type: int64
51
+ description: Number of groups the user is a part of.
52
+ - name: groups
53
+ type: list
54
+ description: List of groups the user is a member of.
55
+ - name: avatar_url
56
+ type: string
57
+ description: URL of the user's avatar.
58
+ - name: last_online
59
+ type: string
60
+ description: The last time the user was online.
61
+ - name: premium_status
62
+ type: boolean
63
+ description: Indicates if the user has a premium account (True/False).
64
+ - name: account_age_days
65
+ type: int64
66
+ description: The age of the account in days.
67
+ - name: url
68
+ type: string
69
+ description: URL link to the user's profile.
70
+
71
  ---
72
  # Roblox User Dataset
73