Changes in version 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. Changes in version 1.0.1 (2023-08-22) - Remove functions deprecated >2 years ago. - Fix package level documentation. Changes in version 1.0.0 (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. Changes in version 0.1.22 (2019-12-05) - Bugfixes for R 4.0.0 compatibility. Changes in version 0.1.20 (2019-03-25) - Deprecated several functions in favor of tidyverse alternatives. - Modified PDF template. Changes in version 0.1.19 (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() and clean_names(). Use remove_empty(), etc., from the janitor package instead. - Removed unrowname(). Use magrittr::set_rownames() (loaded with tidyverse). Changes in version 0.1.18 - Added an RMarkdown template. Changes in version 0.1.17 (2017-06-01) - Add in to insert =. Optionally map the keyboard shortcut to Alt+- to insert = instead of the traditional <-. Changes in version 0.1.16 (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() Changes in version 0.1.15 (2017-05-16) - New function mat2df() creates a pairwise distance data frame from a square matrix. Changes in version 0.1.14 (2017-05-08) - keep_top_n() thanks to Jeroen Janssens. - deseqresult2tbl() now lets you name the column extracted from the DESeq result's rownames anything you want. - Added the Datasaurus Dozen. - Small updates to enable documentation with pkgdown. - Inconsequential update to %nin%. Changes in version 0.1.13 (2017-03-15) - Cs() (from Hmisc): Convenience function to create a quoted character vector from unquoted strings. Changes in version 0.1.12 (2017-01-22) - Minor bugfixes Changes in version 0.1.11 - convert_to_NA() converts string values to true NA 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() and remove_empty_cols() removes any rows or columns composed entirely of NA values (taken from sfirke/janitor). Changes in version 0.1.10 (2016-09-14) - Tpairs() displays better pairwise scatterplot matrices than pairs(). - 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). Changes in version 0.1.9 (2016-09-01) - Minor bugfixes. Changes in version 0.1.8 (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. Changes in version 0.1.7 (2016-06-15) - gghues() generates color palette emulating ggplot2's default hues. Changes in version 0.1.6 (2016-06-06) - fisherp() uses Fisher's method to combine p-values. Changes in version 0.1.5 (2016-02-03) - dokuwiki() will convert a data.frame to a dokuwiki-formatted table, and will copy said table to the system clipboard if you're on Mac OS X. Changes in version 0.1.4 (2016-01-25) - strSort() alphabetically sorts characters in a string.