Skip to content

Releases: krlmlr/kimisc

kimisc 0.4

18 Dec 16:50
Compare
Choose a tag to compare
  • Deprecate functions with better alternatives found elsewhere:
    • coalesce.na(): dplyr::coalesce()
    • hms.to.seconds() and seconds.to.hms(): the hms package
    • list.to.df(), df.to.list(), nlist() and nc(): the tibble package
    • ofactor(): forcats::fct_inorder()
    • sample.data.frame(): dplyr::sample_n()
    • thisfile() and others: the rprojroot package
    • tll(): purrr::transpose()
    • vswitch(): dplyr::recode()
  • Unexported setMissingNames()
  • Remove call to test_examples() in tests (#12, @jimhester).

kimisc 0.3

18 Dec 16:49
Compare
Choose a tag to compare
  • New cut_format() with ability to tweak label formatting, and more sensible defaults (#9).
    • With examples.
    • Throws an error if breaks is an atomic value.
  • New list_to_df() and df_to_list().
  • New vectorized switch function vswitch.
  • Export all helper functions used by thisfile().
  • gdiff() does not attempt to maintain class information, the called function is supposed to do this.
  • gdiff() accepts a factor as input.
  • Determine knitr input via knitr::current_input() (#6).
  • Use AppVeyor (checks on Windows), Coveralls (coverage analysis) and lintr (static code analysis).
  • Fix CRAN checks.

v0.2-2

08 Sep 23:17
Compare
Choose a tag to compare
v0.2-2 Pre-release
Pre-release
  • new functions list_to_df and df_to_list
  • new vectorized switch function vswitch
  • gdiff does not attempt to maintain class information, the called function is
    supposed to do this
  • gdiff accepts a factor as input
  • determine knitr input via knitr::current_input (#6)
  • export all helper functions used by thisfile
  • use AppVeyor (checks on Windows), Coveralls (coverage analysis) and lintr
    (static code analysis)
  • fix CRAN checks

v0.2-1

12 Dec 22:31
Compare
Choose a tag to compare
  • Function ofactor now uses ... instead of explicit argument list (making it
    compatible to R 2.15.3 and future versions of R), and accepts levels
    argument (works like factor then)

v0.2

20 Mar 16:21
Compare
Choose a tag to compare
  • Cleanup for CRAN release
  • New function thisfile: Returns a guess for the path of the currently
    executed script
  • Removed all dependencies to Rcpp
  • Removed useless Rcpp "Hello World" code
  • New function ofactor: Creates a factor that maintains the order of levels
    in the data
  • Remove functions tc and tlist, they're now part of the sweetnR package
  • New function tll: Transposes a list of lists
  • Added functions:
    • sample.rows
    • hms.to.seconds and seconds.to.hms
    • in_interval
    • nlist
    • coalesce.na
    • export