Releases: btskinner/rscorecard
Releases · btskinner/rscorecard
v0.11.1
Bug fix
- correct error in regular expression that converted dev-friendly names back to variable names in
sc_get
(h/t @nguyentr17) - moved regular expression conversions to
utility_functions::dev_to_var
Updates
- added tests for regex conversion:
test-regex
v0.11.0
v0.10.0
v0.9.0
Potentially breaking changes
- The default value for
sc_year()
is now'latest'
rather than 2013. This change reflects a new feature in the College Scorecard API. With continued data updates, using'latest'
makes more sense than keeping an old year. Existing scripts that relied on the default for data from 2013 will need to be updated or risk pulling the wrong data files. - Also note that the
year
column will be a character column withlatest
as the value when the most recent data are choosen. The College Scorecard doesn't clearly note which data are the latest (i.e., I can't convert latest data to the year they belong to just using the returned values). Therefore, I have left the string. When building a panel dataset across multiple years, it will be best to use numeric year values for all years so that the resulting tibbles can be bound together cleanly.
Other changes
- add support for using some tidyselect helper functions when selecting variables with
sc_select()
:starts_with()
,ends_with()
,contains()
, andmatches()
should now be available. - update dictionary for 6 September 2018 release of data
v.0.8.0
v0.7.1
v0.7.0
v0.6.0
v0.5.0
rscorecard v0.4.1
Updates
Bug fix
- Changed way API call is made (now using
httr
to make call rather thanjsonlite
directly) in order to improve parsing on bad lines
Changes
- added
debug
option tosc_get()
so that the API URL string could be returned when debugging call - removed old namespace import/exports no longer being used