-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess2.py
executable file
·238 lines (215 loc) · 8.43 KB
/
process2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#!/usr/bin/env python3
import os
import json
import re
import sys
import firebase_admin
from firebase_admin import credentials
from firebase_admin import firestore
# constants
KEY_FILE = 'privatekey.json'
OUTPUT_DIR = "output"
# STUDY-SPECFIC constants
MAX_NUM_HYPO_NODES = 7
CONDITIONS = ["cond1", "cond2", "cond3"]
CONDITION_HYPOS = {
"cond1": ["initial", "final"],
"cond2": ["initial", "opposite", "final"],
"cond3": ["final"]
}
def mkdirs(class_code):
if not os.path.exists(OUTPUT_DIR):
os.mkdir(OUTPUT_DIR)
class_dir = os.path.join(OUTPUT_DIR, class_code)
if not os.path.exists(class_dir):
os.mkdir(class_dir)
for curr_cond in CONDITIONS:
curr_cond_dir = os.path.join(class_dir, curr_cond)
if not os.path.exists(curr_cond_dir):
os.mkdir(curr_cond_dir)
for hypo in CONDITION_HYPOS[curr_cond]:
curr_hypo_steps = "%sHypo_steps" % hypo
curr_hypo_steps_dir = os.path.join(curr_cond_dir, curr_hypo_steps)
if not os.path.exists(curr_hypo_steps_dir):
os.mkdir(curr_hypo_steps_dir)
brm_cond = os.path.join(curr_cond_dir, "brm")
if not os.path.exists(brm_cond):
os.mkdir(brm_cond)
def write_stud_file_rec(fp, data):
fields = ['userID', 'preTestScore', 'condition', 'firstPrediction', 'secondPrediction']
numeric_flds = ["preTestScore"]
line = ""
for fld in fields:
if fld in numeric_flds:
val = data.get(fld, "N/A")
if "N/A" == val:
line += '"%s",' % val
else:
line += "%s," % val
else:
line += '"%s",' % data.get(fld, "N/A")
line = line.rstrip(',')
line += "\n"
fp.write(line)
def write_rq_rec(fp, data):
fields = ['selectedArea', 'selectedTopic', 'selectedVariable']
line = '"RQMOD","%s",' % data['userID']
for fld in fields:
try:
line += '"%s",' % data['rqted']['moduleState'][fld]['index']
except KeyError:
line += '"N/A",'
line = line.rstrip(',')
line += "\n"
fp.write(line)
def write_brm_steps(class_code, condition, data):
brm = data['brm']
brm_hdr = "type,title,selected,isCorrect\n"
step_file_name = os.path.join('output', class_code, condition, "brm", "%s.csv" % data['userID'])
with open(step_file_name, "w") as fh:
for step in brm:
stepCsv = step["type"] + ","
if step["type"] == "LINK":
stepCsv += step["link"] + ","
stepCsv += "\n"
elif step["type"] == "QUIZ":
stepCsv += '"' + re.sub("\s+", " ", step["title"].replace('"', "'")) + '"' + ","
stepCsv += '"' + step["selected"].replace('"', '""') + '"' + ","
stepCsv += str(step["isCorrect"]) + ","
stepCsv += "\n"
else:
print("error: type doesn't exist")
fh.write(stepCsv)
def mk_hypo_hdr():
hypo_hdr = "HPMOD,Student User Name,prediction,predictionValue,"
for i in range(MAX_NUM_HYPO_NODES):
hypo_hdr += "node_" + str(i+1) + ","
for i in range(MAX_NUM_HYPO_NODES):
hypo_hdr += "arrowLabel_" + str(i+1) + ","
for i in range(MAX_NUM_HYPO_NODES):
hypo_hdr += "direction_" + str(i+1) + ","
hypo_hdr += "notes\n"
return hypo_hdr
def write_hypo_data(fp, class_code, which_hypo, data):
""" writes out hypothis data for 'which_hypo'
fp is the file handle for the aggregate file (all users)
steps_file (below) is a separate file for the user
"""
userID = data['userID']
condition = data['condition']
hypo_data = data[which_hypo + 'Hypo']
line = '"HPMOD","%s","%s","%s",' % \
(userID, hypo_data["currentPrediction"], hypo_data["currentPredictionValue"])
nodes = hypo_data['nodes']
arrow_labels = hypo_data['arrowLabels']
directions = hypo_data['directions']
for i in range(MAX_NUM_HYPO_NODES):
if i >= len(nodes):
line += '"N/A",'
else:
line += '"%s",' % nodes[i]
for i in range(MAX_NUM_HYPO_NODES):
if i >= len(arrow_labels):
line += '"N/A",'
else:
line += '"%s",' % arrow_labels[i]
for i in range(MAX_NUM_HYPO_NODES):
if i >= len(directions):
line += '"N/A",'
else:
line += '"%s",' % directions[i]
notes = hypo_data.get('notes', 'N/A')
line += '"%s"\n' % notes.replace('\n', ' ')
fp.write(line)
# create a seperate *hypo_steps/userID.csv file for the student
steps_file = os.path.join('output', class_code, condition, "%sHypo_steps" % which_hypo, "%s.csv" % userID)
steps_hdr = "action,object,index,info,date,time\n"
with open(steps_file, "w") as fh:
fh.write(steps_hdr)
for step in hypo_data.get('steps', []):
line = ""
for fld in ["action", "object", "index", "info", "timestamp"]:
line += '"%s",' % step[fld]
line = line.rstrip(',')
line += "\n"
fh.write(line)
def get_collection(private_key_file, class_code):
# Use a service account
cred = credentials.Certificate(private_key_file)
firebase_admin.initialize_app(cred)
db = firestore.client()
class_ref = db.collection(class_code)
return class_ref
def get_condition_data(class_ref, class_code, condition):
print("condition: {}".format(condition))
cond_dir = os.path.join(OUTPUT_DIR, class_code, condition)
stud_file = os.path.join(cond_dir, "students.csv")
rq_file = os.path.join(cond_dir, "rqted.csv")
initial_hypo_file = os.path.join(cond_dir, "initialHypo.csv")
opposite_hypo_file = os.path.join(cond_dir, "oppositeHypo.csv")
final_hypo_file = os.path.join(cond_dir, "finalHypo.csv")
stud_hdr = "Student User Name,preTestScore,condition,firstPrediction,secondPrediction\n"
rq_hdr = "RQMOD,Student User Name,selectedArea,selectedTopic,selectedVariable\n"
hypo_hdr = mk_hypo_hdr()
initial_hypo_fp = None
opposite_hypo_fp = None
final_hypo_fp = open(final_hypo_file, "w")
with open(stud_file, "w") as stud_fp, \
open(rq_file, "w") as rq_fp:
if "initial" in CONDITION_HYPOS[condition]:
initial_hypo_fp = open(initial_hypo_file, "w")
initial_hypo_fp.write(hypo_hdr)
if "opposite" in CONDITION_HYPOS[condition]:
opposite_hypo_fp = open(opposite_hypo_file, "w")
opposite_hypo_fp.write(hypo_hdr)
stud_fp.write(stud_hdr)
rq_fp.write(rq_hdr)
query = class_ref.where('condition', '==', condition)
for doc in query.stream():
user_id = doc.id
data = doc.to_dict()
print('\tuserID: {}'.format(user_id))
updates = {
'userID': user_id,
'rqted': json.loads(data.pop('rqted', '{}')),
'brm': json.loads(data.pop('brm', '[]'))
}
for curr_hypo in CONDITION_HYPOS[condition]:
updates[curr_hypo+'Hypo'] = json.loads(data.pop(curr_hypo+'Hypo', '{}'))
# throw away kruft
data.pop('hypo', '')
# throw away stuff which shouldn't be there
data.pop('oppositeHypo', '')
data.update(updates)
write_stud_file_rec(stud_fp, data)
write_rq_rec(rq_fp, data)
write_brm_steps(class_code, condition, data)
if initial_hypo_fp:
write_hypo_data(initial_hypo_fp, class_code, "initial", data)
if opposite_hypo_fp:
write_hypo_data(opposite_hypo_fp, class_code, "opposite", data)
# all conditions have a final hypo
write_hypo_data(final_hypo_fp, class_code, "final", data)
if initial_hypo_fp:
initial_hypo_fp.close()
if opposite_hypo_fp:
opposite_hypo_fp.close()
final_hypo_fp.close()
def main(private_key_file, class_code):
mkdirs(class_code)
class_ref = get_collection(private_key_file, class_code)
for cond in CONDITIONS:
get_condition_data(class_ref, class_code, cond)
if __name__ == "__main__":
if not os.path.exists(KEY_FILE):
sys.stderr.write("""
Error: '%s' does not exist. Refer to README.md to generate the keyfile.
""" % KEY_FILE)
sys.exit(1)
class_code = None
if len(sys.argv) != 2:
print('USAGE: python3 process2.py CLASS_CODE')
sys.exit(1)
else:
class_code = sys.argv[1]
main(KEY_FILE, class_code)