admissions.data.update | R Documentation |
Returns a data frame and saves to a file of current admissions data for UW-Madison from UW.STDNT_UGRD_APPLICANT.
admissions.data.update(TERMS, INFOACCESScon, FILE)
TERMS |
Char vector of SIS terms |
INFOACCESScon |
DBI connection to UW-Madison InfoAccess |
FILE |
csv file path with an existing data to be updated. Defaults to admissions.csv in the current working directory. If no file exists it creates one. |
This function queries the admissions information for specified terms for UW-Madison. It will update an existing data file with past admissions information to create a time-stamped enrollment file. It also returns the data frame that is output to the csv file.
INFOACCESScon <- DBI::dbConnect(odbc::odbc(), "INFOACCESS", uid="usr", pwd="password") admissions.data.update(c("1226", "1232"), INFOACCESScon) admissions.data.update(c("1226", "1232"), INFOACCESScon, "C:\R_Projects\Enrollment_Tracking\Admissions1232.csv") admissions <- admissions.data.update(c("1226", "1232"), INFOACCESScon, "C:\R_Projects\Enrollment_Tracking\Admissions1232.csv")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.