--- title: "Set up your data for IPEDS OM processing" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Set up your data for IPEDS OM processing} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ``` ```{r setup, eval=FALSE, echo=FALSE} library(IPEDSuploadables) ``` ## To use the `produce_om_report` function, your data must be in the format described below > * One row per person * One IPEDS Unitid per file * Columns with values and types as described below (additional columns are allowed) ```{r dataprep, echo=FALSE, eval=FALSE, message=FALSE} #this chunk is only used during interactive session by the package maintainers, if the requirements have been updated tryCatch(specs_OM <- googlesheets4::read_sheet('1e1o9Omor7jWwxKRncgzvFbz67sUxKqSkPtSW_B-8jr0'), error = function(x) message("Google Sheet unavailable"), warning = function(y) message("There was a warning")) #then run use_data(specs_OM, overwrite = TRUE) #to save as .rda and replace the old file ``` ```{r specstable, echo=FALSE, warning=FALSE, message=FALSE} #figure out why striped isn't working when format = 'html' load("../data/specs_OM.rda") library(magrittr) specs_OM$ACCEPTABLE_VALUES <- stringr::str_replace_all(specs_OM$ACCEPTABLE_VALUES, pattern = "\\n", replacement = "
") knitr::kable(specs_OM, format = 'html', escape = FALSE, col.names = c('Column Name', 'Column Type', 'Acceptable Value - Definition')) %>% kableExtra::kable_styling(bootstrap_options = "striped") %>% kableExtra::column_spec(2, italic = TRUE, width = '8em') ```