Connect to IABWA table on PROD2 in Assessments schema

get_iabwa()

Value

a tbl_sql SQL Server object.

Examples


# This attaches to the school db with \code{conn_PROD1} connection

if (FALSE) {
schools <- get_schools()
}
# This pulls down schools data form the DB and onto your computer
# and then cleans the names (lower snakecase) using [janitor::clean_names()]

if (FALSE) {
ias_bwas <- get_ia_bwa() %>%
  filter(AcademicYear == "2020-2021") %>%
  collect() %>%
  clean_names()
  }