Skip to contents

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.22

CRAN release: 2019-12-05

  • Bugfixes for R 4.0.0 compatibility.

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() and clean_names(). Use remove_empty(), etc., from the janitor package instead.
  • Removed unrowname(). Use magrittr::set_rownames() (loaded with tidyverse).

Tmisc 0.1.18

  • Added an RMarkdown template.

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’s rownames anything you want.
  • Added the Datasaurus Dozen built-in dataset (datasaurus).
  • 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.12

CRAN release: 2017-01-22

  • Minor bugfixes

Tmisc 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).

Tmisc 0.1.10

CRAN release: 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).

Tmisc 0.1.9

CRAN release: 2016-09-01

  • Minor bugfixes.

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.

Tmisc 0.1.6

CRAN release: 2016-06-06

  • fisherp() uses Fisher’s method to combine p-values.

Tmisc 0.1.5

CRAN release: 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.

Tmisc 0.1.4

CRAN release: 2016-01-25

  • strSort() alphabetically sorts characters in a string.