Show the progress report for one student
report_progress(
email,
second.course = FALSE,
course = NULL,
module = NULL,
browse = TRUE,
url = getOption("learnitr.lrs_url"),
port = 3260
)
run_progress_report(port = 3260)
The email address of the student
Should we display data for a secondary course that the student follows?
The primary course
Should we restrict data for one module, (or all with NULL
)?
Should we browse to the provided URL?
The url to connect to the MongoDB database
The port where the Shiny application is serving. If 0, a version on a server (for instance, on Posit Connect) is used.
The URL to the progress report
if (FALSE) { # \dontrun{
# In a different R session, run the following line:
learnitprogress::run_progress_report()
# Then...
options(learnitr.lrs_url = "mongodb://127.0.0.1/sdd")
learnitprogress::report_progress("student.email@school.edu")
} # }