-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple choice qs #2
base: main
Are you sure you want to change the base?
Conversation
edwardchalstrey1
commented
May 23, 2023
•
edited
Loading
edited
- Adds a table function that can be applied to summarise the MCQ questions in a markdown table
- Notebook that loads the survey spreadsheet and prints the tables, which have been copied into the Questionnaire summary issues already
@manics in case we hadn't told you already, we moved your notebook into this open repo and factored out some of the data loading/cleaning steps to a script so it's easy to make new notebooks/scripts that can quickly load up the same dataframe you used - this PR has a separate nb that just produces some tables for the GH issues |
"from datetime import datetime \n", | ||
"import matplotlib\n", | ||
"import matplotlib.pyplot as plt\n", | ||
"import numpy as np\n", | ||
"import pandas as pd\n", | ||
"# Requires openpyxl for read_excel\n", | ||
"from pathlib import Path\n", | ||
"import re\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you planning to extend this notebook later? Most of these imports are unused.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not at present, this is just a lazy copy and paste