Nothing
#' Some initial recodes for Admissions parts C and D
#'
#' @param df a dataframe of applicant level data
#'
#'
prep_adm_data_frame <- function(df) {
colnames(df) <- stringr::str_to_upper(colnames(df))
df <- df %>%
dplyr::mutate(UNITID = as.character(.data$UNITID))
if("STUDENTID" %in% colnames(df)) {
df <- df %>%
dplyr::mutate(STUDENTID = as.character(.data$STUDENTID))
}else{
df <- df %>%
dplyr::mutate(STUDENTID = as.character(seq(1:nrow(df))))
}
return(df)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.