Description Usage Arguments Value Examples
The function downloads the data for a specific module given the semester-, faculty- and module-number.
1 | module_data(semester_nr, faculty_nr, module_nr)
|
semester_nr |
A numeric value corresponding to a certain semester. See the function semester_data to get all semester-numbers. |
faculty_nr |
A numeric value corresponding to a certain faculty. See the function faculty_data to get all faculty-numbers. |
module_nr |
A numeric value corresponding to a certain module. See the function list_modules to get all modulen-umbers. |
The result is a data.frame containing the data for a module for one semester. Depending on the module, it is possible that there are several rows, containing the data for several exam dates.
1 2 3 4 5 6 7 8 | # Download the data for the introductory
# course in statistics at the economic faculty for the summer semester 2017.
# First get the information for specific semester-, faculty- and module-number
semester_data() # the required semester-number is 65
faculty_data() # the required faculty-number is 12
list_modules(12) # the required module-number is 109
module_data(65,12,109)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.