Changelog
Source:NEWS.md
kimisc 0.4 (2017-12-17)
CRAN release: 2017-12-18
- Deprecate functions with better alternatives found elsewhere:
-
coalesce.na()
:dplyr::coalesce()
-
hms.to.seconds()
andseconds.to.hms()
: the hms package -
list.to.df()
,df.to.list()
,nlist()
andnc()
: 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).
Version 0.3 (2016-02-12)
CRAN release: 2016-02-14
- 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()
anddf_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.
Version 0.2-1 (2014-04-02)
CRAN release: 2014-04-02
- Function
ofactor
now uses...
instead of explicit argument list (making it compatible to R 2.15.3 and future versions of R), and acceptslevels
argument (works likefactor
then)
Version 0.1.7
New function
thisfile
: Returns a guess for the path of the currently executed scriptRemoved all dependencies to Rcpp
Version 0.1.6
Removed useless Rcpp “Hello World” code
New function
ofactor
: Creates a factor that maintains the order of levels in the data