Shortcut function with all steps to provide a Grad Rates 200 report

produce_gr200_report(df, format = "uploadable")

Arguments

df

a dataframe set up according to the readme

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.

Value

A txt or csv file at the path of your choice

Examples

# \dontshow{
#set temp directory for this example (not necessary for users)
.old_wd <- setwd(tempdir())
# }

#entire report
produce_gr200_report(gr200_students)
#> Uploadable results available at C:/Users/alanski/AppData/Local/Temp/Rtmp6NIZ2q/GR200_AllParts_2023-11-01.txt

# \dontshow{
#reset directory for this example (not necessary for users)
setwd(.old_wd)
# }