Skip to content

Releases: btskinner/rscorecard

v0.11.1

02 Nov 17:10
Compare
Choose a tag to compare

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

30 Oct 20:53
Compare
Choose a tag to compare

Updates

  • update dictionary for 30 October 2018 release of data

v0.10.0

01 Oct 16:14
Compare
Choose a tag to compare

Updates

  • update dictionary for 28 September 2018 release of data

v0.9.0

07 Sep 05:39
Compare
Choose a tag to compare

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 with latest 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(), and matches() should now be available.
  • update dictionary for 6 September 2018 release of data

v.0.8.0

25 Aug 23:05
Compare
Choose a tag to compare

Updates

  • improved error handling when submitting bad request (#4)
  • added sc_select_() and sc_filter_(), which allow users to select and filter variables using strings stored in environment variable (#7)
  • added Travis CI tests that test API functionality

v0.7.1

29 Mar 22:01
Compare
Choose a tag to compare

Updates

  • update dictionary for March 2018 release of scorecard data

v0.7.0

08 Mar 21:53
Compare
Choose a tag to compare

Updates

  • update dictionary for 19 December 2017 release of scorecard data

v0.6.0

27 Nov 15:51
Compare
Choose a tag to compare

Updates

  • allow sc_zip() to take zip codes that start with zero (h/t @nateaff), either with string value or by returning leading zeros to numeric values that R drops

v0.5.0

20 Oct 18:11
Compare
Choose a tag to compare

Same as v0.4.1 but changed increment level to minor due to changes in way API call is made. As submitted to CRAN.

rscorecard v0.4.1

04 Oct 14:48
Compare
Choose a tag to compare

Updates

Bug fix

  • Changed way API call is made (now using httr to make call rather than jsonlite directly) in order to improve parsing on bad lines

Changes

  • added debug option to sc_get() so that the API URL string could be returned when debugging call
  • removed old namespace import/exports no longer being used