class: middle, center # Core functionalities --- class: middle, center <div class="row"> <div class="column_left"> <img src="figures/final-diagram-left-4.png" alt="A box labeled '1 Preparation' with three boxes contained within: 'obtain the roster' (shaded gray), 'create the rubric' (shaded yellow), 'retrieve the assignment' (shaded gray). Another box labeled input with three bullet points: roster, rubric, and assignments" style="width:100%"> </div> <div class="column_center"> <img src="figures/final-diagram-center-3.png" alt="Three rounded rectangles of yellow color saying 'automatically open/close assignment files', 'assign scores and feedback to each assignment given the applied rubric items', and 'store grading progress'. Below this rounded rectangle is blank space as if more rectangles are still not shown." style="width:100%"> </div> <div class="column_right"> <img src="figures/final-diagram-right-3.png" alt="A box labeled output with three bullet points: grade sheet, feedback files, and GitHub issues." style="width:100%"> </div> </div> --- class: left ## Hands-on: grade! (**10 min**) .pull-left[ 1. Use `assist_grading()` to **begin grading** your assignment, and **stop** grading after one question 2. **Examine feedback file** & **grade sheet** 3. Resume grading to **finish grading** an entire submission ] -- .pull-right[ ```r assist_grading( rubric_path = "rubric.csv", roster_path = "roster.csv", grading_progress_log_path = "quiz01-grading-progress-log.csv", final_grade_sheet_path = "quiz01-final-grade-sheet.csv", example_student_identifier = "BaronPoisson", example_assignment_path = "quiz01/quiz01-BaronPoisson.Rmd", example_feedback_path = "quiz01/quiz01-BaronPoisson-feedback.Rmd" ) ``` ]