-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
The current output is a text table of paired student/preceptor names. While this information is critical, the user may want more information about the matching, as well as multiple views of the data.
First, the output should be in CSV format, since we want the results to be importable to a spreadsheet.
Second, the output should contain not just names. Rather, there should be the following fields:
- Student name
- Preceptor name
- Preceptor location
- Practice type
- Day of the week
The program should also create multiple sheets, each ordered by one of these fields. This multiple-view, reordered output should be generated by a script that simply uses awk
, sort
, etc. Or perhaps Python would be especially good at this task.