-
Notifications
You must be signed in to change notification settings - Fork 0
/
student_generator.py
391 lines (302 loc) · 12.5 KB
/
student_generator.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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
import os
import uuid
import random
grades = ["A", "A-", "B+", "B", "B-",
"C+", "C", "C-", "D+", "D", "D-", "F"]
math_courses = [("MATH-098", 4), ("MATH-115", 4), ("MATH-121", 4),
("MATH-122", 4), ("MATH-247", 4), ("MATH-280", 4)]
cis_courses = [("CIS-115", 4), ("CIS-121", 4), ("CIS-122", 4),
("CIS-223", 4), ("CIS-224", 4)]
"""
Generator variables
"""
retake_probability = 0.05
prob_programming_exp = 0.20
def main():
# The number of existing and incoming Computer Science majors
existing_cs, incoming_cs = 70, 106
# The number of existing and incoming Management Information Science majors
existing_mis, incoming_mis = 54, 17
# The number of existing and incoming Computer Information Technology majors
existing_cit, incoming_cit = 224, 64
# The number of existing and incoming Health Informatic majors
existing_hi, incoming_hi = 8, 1
generate_cs_students("students-cs.json", existing_cs, incoming_cs)
generate_mis_students("students-mis.json", existing_mis, incoming_mis)
generate_cit_students("students-cit.json", existing_cit, incoming_cit)
generate_hi_students("students-hi.json", existing_hi, incoming_hi)
def generate_cs_students(filename, existing_students, incoming_students):
# Remove the file if it exists
if os.path.exists(filename):
os.remove(filename)
# open the file
file = open(filename, "w")
# write the header
file.write("{\"students\":[\n")
"""
Generate the existing CS students
"""
for i in range(existing_students):
# student header
file.write(student_header())
# This determines how far they go in the courses
num_of_math_classes = random.randint(2, len(math_courses))
num_of_cis_classes = random.randint(1, len(cis_courses))
# Generate the math courses
generate_math(file, num_of_math_classes, existing_students)
file.write(",\n")
# Generate the CIS courses
generate_cis(file, num_of_cis_classes, existing_students)
file.write("]\n},\n")
"""
Generate the incoming CS students
"""
for i in range(incoming_students):
# This determines how far they go in the courses
num_of_math_classes = random.randint(1, len(math_courses))
num_of_cis_classes = random.randint(1, len(cis_courses) - 1)
# when a student is coming in, they may or may not have programming
# experience
programming_exp = random.randint(0, 99)
has_experience = programming_exp < prob_programming_exp * 100
file.write(student_header(has_experience))
# This determines how far they go in the courses
# If they do not have experience, they are placed in CIS-115 no matter
# their math level
if has_experience:
# TODO: Then consider their math level. For now gives what a 50/50 chance of being 115 or 121
num_of_cis_classes = 1
else:
num_of_cis_classes = 0
# Generate the math courses
generate_math(file, num_of_math_classes, incoming_students, False)
if num_of_cis_classes > 0:
file.write(",\n")
# Generate the CIS courses
generate_cis(file, num_of_cis_classes, incoming_students, False)
if i != incoming_students - 1:
file.write("]\n},\n")
else:
file.write("]\n}\n")
# close the header
file.write("]}")
# close the file
file.close()
def generate_mis_students(filename, existing_students, incoming_students):
# Remove the file if it exists
if os.path.exists(filename):
os.remove(filename)
# open the file
file = open(filename, "w")
# write the header
file.write("{\"students\":[\n")
"""
Generate the existing MIS students
"""
for i in range(existing_students):
# student header
file.write(student_header())
# This determines how far they go in the courses
num_of_math_classes = random.randint(1, 3)
num_of_cis_classes = random.randint(1, len(cis_courses) - 1)
# Generate the math courses
generate_math(file, num_of_math_classes, existing_students)
file.write(",\n")
# Generate the CIS courses
generate_cis(file, num_of_cis_classes, existing_students)
file.write("]\n},\n")
"""
Generate the incoming MIS students
"""
for i in range(incoming_students):
# This determines how far they go in the courses
num_of_math_classes = random.randint(1, 3)
num_of_cis_classes = random.randint(1, len(cis_courses) - 1)
# when a student is coming in, they may or may not have programming
# experience
programming_exp = random.randint(0, 99)
has_experience = programming_exp < prob_programming_exp * 100
file.write(student_header(has_experience))
# This determines how far they go in the courses
# If they do not have experience, they are placed in CIS-115 no matter
# their math level
if has_experience:
# TODO: Then consider their math level. For now gives what a 50/50 chance of being 115 or 121
num_of_cis_classes = 1
else:
num_of_cis_classes = 0
# Generate the math courses
generate_math(file, num_of_math_classes, incoming_students, False)
if num_of_cis_classes > 0:
file.write(",\n")
# Generate the CIS courses
generate_cis(file, num_of_cis_classes, incoming_students, False)
if i != incoming_students - 1:
file.write("]\n},\n")
else:
file.write("]\n}\n")
# close the header
file.write("]}")
# close the file
file.close()
def generate_cit_students(filename, existing_students, incoming_students):
# Remove the file if it exists
if os.path.exists(filename):
os.remove(filename)
# open the file
file = open(filename, "w")
# write the header
file.write("{\"students\":[\n")
"""
Generate the existing CIT students
"""
for i in range(existing_students):
# student header
file.write(student_header())
# This determines how far they go in the courses
num_of_math_classes = random.randint(1, 3)
num_of_cis_classes = random.randint(1, len(cis_courses))
# Generate the math courses
generate_math(file, num_of_math_classes, existing_students)
file.write(",\n")
# Generate the CIS courses
generate_cis(file, num_of_cis_classes, existing_students)
file.write("]\n},\n")
"""
Generate the incoming CIT students
"""
for i in range(incoming_students):
# This determines how far they go in the courses
num_of_math_classes = random.randint(1, 3)
num_of_cis_classes = random.randint(1, len(cis_courses) - 1)
# when a student is coming in, they may or may not have programming
# experience
programming_exp = random.randint(0, 99)
has_experience = programming_exp < prob_programming_exp * 100
file.write(student_header(has_experience))
# This determines how far they go in the courses
# If they do not have experience, they are placed in CIS-115 no matter
# their math level
if has_experience:
# TODO: Then consider their math level. For now gives what a 50/50 chance of being 115 or 121
num_of_cis_classes = 1
else:
num_of_cis_classes = 0
# Generate the math courses
generate_math(file, num_of_math_classes, incoming_students, False)
if num_of_cis_classes > 0:
file.write(",\n")
# Generate the CIS courses
generate_cis(file, num_of_cis_classes, incoming_students, False)
if i != incoming_students - 1:
file.write("]\n},\n")
else:
file.write("]\n}\n")
# close the header
file.write("]}")
# close the file
file.close()
def generate_hi_students(filename, existing_students, incoming_students):
# Remove the file if it exists
if os.path.exists(filename):
os.remove(filename)
# open the file
file = open(filename, "w")
# write the header
file.write("{\"students\":[\n")
"""
Generate the existing HI students
"""
for i in range(existing_students):
# student header
file.write(student_header())
# This determines how far they go in the courses
num_of_math_classes = random.randint(1, 3)
num_of_cis_classes = random.randint(1, len(cis_courses) - 2)
# Generate the math courses
generate_math(file, num_of_math_classes, existing_students)
file.write(",\n")
# Generate the CIS courses
generate_cis(file, num_of_cis_classes, existing_students)
file.write("]\n},\n")
"""
Generate the incoming HI students
"""
for i in range(incoming_students):
# This determines how far they go in the courses
num_of_math_classes = random.randint(1, 3)
num_of_cis_classes = random.randint(1, len(cis_courses) - 1)
# when a student is coming in, they may or may not have programming
# experience
programming_exp = random.randint(0, 99)
has_experience = programming_exp < prob_programming_exp * 100
file.write(student_header(has_experience))
# This determines how far they go in the courses
# If they do not have experience, they are placed in CIS-115 no matter
# their math level
if has_experience:
# TODO: Then consider their math level. For now gives what a 50/50 chance of being 115 or 121
num_of_cis_classes = 1
else:
num_of_cis_classes = 0
# Generate the math courses
generate_math(file, num_of_math_classes, incoming_students, False)
if num_of_cis_classes > 0:
file.write(",\n")
# Generate the CIS courses
generate_cis(file, num_of_cis_classes, incoming_students, False)
if i != incoming_students - 1:
file.write("]\n},\n")
else:
file.write("]\n}\n")
# close the header
file.write("]}")
# close the file
file.close()
def generate_math(file, num_of_math_classes, num_of_students, existing=True):
for course in range(num_of_math_classes):
retake_roll = random.randint(0, 99)
initial_grade = random.randint(0, len(grades) - 1)
string = "{\"name\":\"" + math_courses[course][0] + \
"\",\"grade\":\"" + grades[initial_grade] + "\",\"credits\":" + \
str(math_courses[course][1]) + "}"
file.write(string)
# Give the course a chance of being retaken, or if the initial class' grade was low enough
if existing and (retake_roll <= retake_probability * 100 or initial_grade > 6):
# we always want to print a comma before a retake
file.write(",")
grade = random.randint(0, initial_grade)
string = "{\"name\":\"" + math_courses[course][0] + \
"\",\"grade\":\"" + grades[grade] + "\",\"credits\":" + \
str(math_courses[course][1]) + "}"
file.write(string)
if course != num_of_math_classes - 1:
file.write(",\n")
def generate_cis(file, num_of_cis_classes, num_of_students, existing=True):
for course in range(num_of_cis_classes):
retake_roll = random.randint(0, 99)
initial_grade = random.randint(0, len(grades) - 1)
string = "{\"name\":\"" + cis_courses[course][0] + \
"\",\"grade\":\"" + grades[initial_grade] + "\",\"credits\":" + \
str(cis_courses[course][1]) + "}"
file.write(string)
# Give the course a chance of being retaken, or if the initial class' grade was low enough
if existing and (retake_roll <= retake_probability * 100 or initial_grade > 6):
# we always want to print a comma before a retake
file.write(",")
grade = random.randint(0, initial_grade)
string = "{\"name\":\"" + cis_courses[course][0] + \
"\",\"grade\":\"" + grades[grade] + "\",\"credits\":" + \
str(cis_courses[course][1]) + "}"
file.write(string)
if course != num_of_cis_classes - 1:
file.write(",\n")
def student_header(exp: bool = True):
string = ""
string += "{{\"id\": \"{}\",\n".format(uuid.uuid4().hex)
string += "\"programming_experience\": {},\n".format(str(exp).lower())
# TODO: Major?
string += "\"courses\": [\n"
return string
if __name__ == "__main__":
main()