Skip to content
Zach227 edited this page Aug 3, 2022 · 6 revisions

Information relating to learning suite quizzes and data...

Going to reorganize the layout of questions.yml (the page that has all of the raw question code) to have space for 5 questions on each module to avoid confusion with id numbers getting out of order.

Will also explain more as to how to create and embed questions


Processing data from the Learning Suite participation quizzes:

I have committed learningsuite_csv_parser.py to this repository. You can run this to create summaries of participation and feedback.
Options:
     -f (file), collects the module data for a single file
     -m (modules), creates a summary for each module
     -p (participants), creates a summary for each student
     -s (summary), creates a summary of bootcamp participation

The csv files downloaded from Learning Suite are missing a comma at the end of the first line so pandas can not process them raw. I had to make a function that edits each file before reading it in. This may not be needed next year. Additionally, this script is dependent on the participation quizes being in the same format next year.

Clone this wiki locally