Arnold james commited on
Commit
5cf4fa5
·
verified ·
1 Parent(s): 76929d2

Create dataset.yaml

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