Description Usage Arguments Value Examples
Get the grades your students for the courses you mentor
1 2 |
course_id |
The fully qualified id for the course you'd like to pull grades for |
h |
A valid handle to a Mathable session (logged in and cookies in jar) |
user |
Your username, e.g. <netid>@netmath.illinois.edu |
passwd |
Your password Mathable password |
all_students |
Boolean, should all of the grades be pulled, or just the logged in Mentor's? |
active |
Boolean, should only the active students be pulled? |
A data frame with columns:
Mentor The mentor name
Status The status of the student, e.g. "Completed", "Active" or "Withdrawn"
Name The full name of the student in Last Name, First Name form
LastName The last name of the student
FirstName The first name of the student
Value The grade/status of the Try It
Lesson The Lesson number
TryIt The Try It number
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
### login on the fly (does not preserve session for subsequent calls)
get_grades_csv(course_id = "deployedcourses/uiuc_netmath_math461_r2012_mm",
name = "Mcclelland Kemp",
user = "mkemp6@netmath.illinois.edu",
passwd = "<passwd>")
### Use an existing session
session <- login("mkemp6@netmath.illinois.edu", "<passwd>")
get_grades_csv(course_id = "deployedcourses/uiuc_netmath_math461_r2012_mm",
name = "Mcclelland Kemp",
h = session$handle)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.