rscorecard
rscorecard copied to clipboard
R wrapper for U.S. Department of Education College Scorecard Data API
I am able to create a dataframe with the current year's data using this code ```r dt00_sc_debt_19 % sc_filter(unitid == dt00_sc_peers[,3]) %>% sc_select(unitid, instnm, stabbr, ugds, grad_debt_mdn, cdr3) %>% sc_year("latest")...
`rscorecard` functions are intuitive and easy to use. the downside is it takes a long time to get lots of data (e.g., pull many variables, all observations, all years) cuz...
sweet functionality to add to rscorecard: - use regular expressions like you did w/ downloadipeds.r -- and incorporate college scorecard data dictionary and `rscorecard::sc_git()` -- to add variable labels and...
It would be good to confirm that data pulled via the API matches the complete data files. There are a couple of ways to do this: ### Static data -...
Add vignettes that show: - [ ] Pulling program-specific data - [ ] Figures or maps generated with pulled data
`sc_select()` currently supports these tidy select helpers: - `starts_with()` - `ends_with()` - `contains()` - `matches()` - `everything()` Need to add support for: - [ ] `num_range()` (this may not be...
Add unit tests for `convert_json_to_tibble()` in `utility_functions.R` file. - [ ] Create `test-json.R` in `./tests/testthat` - [ ] Create fake json string at top of file (or pull from small...
When I make an API call for program-level columns on repayment status (e.g., % of borrowers in default), ``` sc_2018 % sc_filter(credlev==5) %>% sc_select(unitid, opeid6, instnm, control, main, cipcode, cipdesc,...