Description Usage Format Source Examples
Degrees awarded to postsecondary students (July 1, 2015 to June 30, 2016).
1 |
A data frame with 4644 rows and 5 variables:
cip_title
character The two digit classification of instructional program based on two digit codes. For more information, please visit: https://nces.ed.gov/ipeds/cipcode/browse.aspx?y=55
award_level
character The level at which the degrees were awarded. For information, please visit, https://surveys.nces.ed.gov/ipeds/VisInstructions.aspx?survey=10&id=30080
race_ethnicity
character The race/ethnicity of the students to whom the degrees were awarded: https://nces.ed.gov/ipeds/report-your-data/race-ethnicity-definitions
gender
character The gender of the students to whom the degrees were awarded. As of when the data included here was collected, IPEDS - which is run by the United States Department of Education and is the source of this data - requires that schools report gender as either "men" or "women".
degrees_awarded
integer The number of degrees awarded.
https://nces.ed.gov/ipeds/datacenter/DataFiles.aspx/
1 2 3 4 5 6 | if (require("dplyr")) {
completers16
completers16 %>% group_by(cip_title) %>% tally(degrees_awarded, sort = TRUE)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.