Changelog
Source:NEWS.md
Tmisc 1.1.0
- Removed magrittr pipe (
%>%
) in favor of the base R pipe (|>
), requiring R 4.2.0 at minimum. - Remove more deprecated functions.
- Update documentation throughout.
- Most functions now return a tibble rather than a raw data.frame.
Tmisc 1.0.1
CRAN release: 2023-08-22
- Remove functions deprecated >2 years ago.
- Fix package level documentation.
Tmisc 1.0.0
CRAN release: 2020-09-16
- Bugfixes for R devel checks.
- Move orphan functions to utils.
- Deprecated many long superseded functions.
- Deprecated some no longer useful gene expression functions.
- New PDF template.
Tmisc 0.1.20
CRAN release: 2019-03-25
- Deprecated several functions in favor of tidyverse alternatives.
- Modified PDF template.
Tmisc 0.1.19
CRAN release: 2018-03-20
This is primarily a cleanup release. Several functions were included in the Tmisc package early on while packages such as janitor were in development. This release removes (note, removes, doesn’t deprecate) functions that were previously copied from other packages, introducing a few potentially breaking changes.
- Removed
set_names()
as this is exported from rlang. - Removed
beep()
. Use the beepr package instead. - Removed
remove_empty_cols()
,remove_empty_rows()
,convert_to_NA()
andclean_names()
. Useremove_empty()
, etc., from the janitor package instead. - Removed
unrowname()
. Usemagrittr::set_rownames()
(loaded with tidyverse).
Tmisc 0.1.17
CRAN release: 2017-06-01
- Add in to insert
=
. Optionally map the keyboard shortcut to Alt+-
to insert=
instead of the traditional<-
.
Tmisc 0.1.16
CRAN release: 2017-05-23
- New functions
%like%
and%nlike%
work like%in%
and%nin%
, but where the second argument is a regular expression to match. - New function
gt2refalt()
creates a two-letter genotype from a GT field from a VCF file. - Installs an RStudio add-in to insert
%in%
. - Added aliases for low-level manipulation in a dplyr pipeline:
brackets()
dollar()
is_in()
and()
or()
equals()
is_gt()
is_geq()
is_lt()
is_leq()
not()
set_colnames()
set_rownames()
set_names()
set_attributes()
set_attr()
Tmisc 0.1.15
CRAN release: 2017-05-16
- New function
mat2df()
creates a pairwise distance data frame from a square matrix.
Tmisc 0.1.14
CRAN release: 2017-05-08
-
keep_top_n()
thanks to Jeroen Janssens. -
deseqresult2tbl()
now lets you name the column extracted from the DESeq result’srownames
anything you want. - Added the Datasaurus Dozen.
- Small updates to enable documentation with pkgdown.
- Inconsequential update to
%nin%
.
Tmisc 0.1.13
CRAN release: 2017-03-15
-
Cs()
(from Hmisc): Convenience function to create a quoted character vector from unquoted strings.
Tmisc 0.1.11
-
convert_to_NA()
converts string values to trueNA
values (adapted from sfirke/janitor) -
clean_names()
cleans up the names in a data frame. Resulting names are unique and consist only of the_
character, lowercase letters, and numbers (taken from sfirke/janitor). -
remove_empty_rows()
andremove_empty_cols()
removes any rows or columns composed entirely ofNA
values (taken from sfirke/janitor).
Tmisc 0.1.10
CRAN release: 2016-09-14
-
Tpairs()
displays better pairwise scatterplot matrices thanpairs()
. -
Thist()
plots a histogram with either a normal distribution or density plot overlay. -
corner()
displays the first few rows and columns of a data frame or matrix. -
beep()
plays a short beep to alert when something’s done (from the beepr package).
Tmisc 0.1.8
CRAN release: 2016-07-22
-
jsd()
compute the Jensen-Shannon divergence from a matrix of probabilities. -
Mode()
returns the mode of a vector. -
gg_na()
produces a plot showing the missing values in a data frame. -
are_all_equal()
assess whether all the components of a numeric vector are (approximately) equal.
Tmisc 0.1.7
CRAN release: 2016-06-15
-
gghues()
generates color palette emulating ggplot2’s default hues.