sswt commited on
Commit
70fdecf
1 Parent(s): 3609ebd

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -0
README.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # [Social Network: MOOC User Action Dataset](https://snap.stanford.edu/data/act-mooc.html)
2
+
3
+ The MOOC user action dataset represents the actions taken by users on a popular MOOC platform. The actions have attributes and timestamps. Additionally, each action has a binary label, representing whether the user dropped-out of the course after this action, i.e., whether this is last action of the user.
4
+
5
+ The dataset have been generated as part of the research project on advanced user modeling and recommender systems.
6
+
7
+ Original dataset had 3 distinct csv files, they are joined to a single file here.
8
+
9
+ Columns:
10
+
11
+ * ACTIONID: a unique id for each action.
12
+ * USERID: a unique id for each user.
13
+ * TARGETID: a unique id for each target activity.
14
+ * FEATUREx: a feature value associated with the action. Total four in count, making it a 4-dimensional feature vector.
15
+ * TIMESTAMP: timestamp for the action in seconds from the beginning.
16
+ * LABEL: a binary label indicating whether the student drops-out after the action. The value is 1 for drop-out actions, 0 otherwise.