knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

cadoe

The goal of cadoe is to easily download files from the California Department of Education.

Installation

You can install the released version of cadoe from GitHub with:

remotes::install_github("ir-sfsu/cadoe")

Enrollment Data

This is a basic example which shows you how to solve a common problem:

library(cadoe)
library(dplyr)
enr178 <- get_school_enr_data("2017-18")
glimpse(enr178)

Discipline Data

suspensions1718 <- get_school_discipline_data("1718", "susp")
glimpse(suspensions1718)

Graduation Data

ucgrads178 <- get_school_grad_data("2017-18", "UCGradEth")
glimpse(ucgrads178)

Future work



daranzolin/cadoe documentation built on April 11, 2020, 12:29 a.m.