Shortcut function with all steps to provide an Outcome Measures report
Source:R/produce_om_report.R
produce_om_report.Rd
Shortcut function with all steps to provide an Outcome Measures report
Arguments
- df
A dataframe set up according to the readme
- part
A string with what part of the report you want to produce: 'all', 'A', etc.
- format
A string (
"uploadable"
will produce a properly formatted upload file."readable"
will produce a csv of the upload file (only works for one part at a time)."both"
will provide both options, but only works with one part at a time.
Examples
#entire report
produce_om_report(om_students)
#> Uploadable results available at C:/Users/alanski/AppData/Local/Temp/Rtmp0m4l3v/OutcomeMeasures_AllParts_2024-09-02.txt
#one part with csv output instead of key-value
produce_om_report(om_students, part = 'A', format = 'readable')
#> Readable results available at C:/Users/alanski/AppData/Local/Temp/Rtmp0m4l3v/OutcomeMeasures_PartA_Readable_2024-09-02.csv