knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" ) options(width=10000)
IPEDS
is a package that contains datasets from The Integrated Postsecondary Education Data System (IPEDS). IPEDS is a system of interrelated surveys conducted annually by the U.S. Department of Education's National Center for Education Statistics (NCES). IPEDS annually gathers information from about 6,400 colleges, universities, and technical & vocational institutions that participate in the federal student aid programs.
You can install IPEDS from CRAN with:
install.packages("IPEDS")
Or you can install the development version of IPEDS from GitHub with:
``` {r, eval=FALSE}
devtools::install_github("ajhaller/IPEDS")
## Load ```r library(IPEDS)
library(dplyr) library(ggplot2)
adm2021
: dataset of Admissions and Test Scores for Fall 2021complete2021
: dataset of Completions in 2021conference
: dataset of Conferences for sports (from offerings2021
)dir_info2021
: dataset of Directory Information for 2021fall_enroll2021
: dataset of Fall Enrollment for 2021fin_aid1920
: dataset of Financial Aid Statistics for 2019-2020offerings2021
: dataset of Institutional offerings for 2021relig_aff
: dataset of Religious Affiliations (from offerings2021
)staff2021
: dataset of Fall Staff for 2021staff_cat
: dataset of Staff Categories based on staff2021$staff_cat
head(adm2021)
ggplot(adm2021, mapping = aes(x = adm_tscores, fill = adm_tscores)) + geom_bar() + labs(title = "Amount of Schools vs. Test Score Requirement", x = "Test Score Requirement", y = "Amount of Schools") + scale_fill_discrete(name = "Test Score Requirement", labels = c("Considered_but_not_required" = "Considered but not Required", "Neither_required_nor_recommended" = "Neither Required nor Recommended")) + theme(axis.text.x=element_blank(), axis.ticks.x=element_blank())
head(dir_info2021)
admission_reqs # extracts admission requirements for any institution acceptance_rate # calculates acceptance rate for any institution school_preferences # provides a dataset of institutions according to your preferences compare_int # function allows comparison of two institutions and its important qualities read_data # function for importing raw data from IPEDS
admission_reqs(167835)
school_preferences(financial_aid = 70, size = 2, region = "New England", diversity_staff = 27)
acceptance_rate(167835)
For further examples and capabilities, please see the vignette
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.