Learn R Programming

convertr

An R package for converting things to other things. The package is not on CRAN but can be installed using:

install.packages("devtools")
devtools::install_github("GShotwell/convertr")

The package contains one function which converts numerical vectors from one unit to another. Data on conversion factors comes from the POSC Units of Measure Dictionary v2.2 and Wikipedia.

convert(1:20, "kg", "g")
convert(1:20, "sq yd", "km2")

#This will produce an error:
convert(1:20, "kg", "km2)

Units are converted using a lookup table, based on the POSC dictionary. You can explore this table using the explore_units() function. This function launches a shiny app.

Figuring out which units can be converted to each other can be tricky, so convertr comes with an an shiny gadget to help you build valid convert() expressions. This can be accesed either by calliing convert_gadget() or through the addin menu. To access the addin make sure you are using a recent version of RStudio.

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

Copy Link

Version

Install

install.packages('convertr')

Monthly Downloads

175

Version

0.1

License

MIT + file LICENSE

Maintainer

Gordon Shotwell

Last Published

October 13th, 2016

Functions in convertr (0.1)

get_conversion_table

Return the conversion table
convert_gadget

Launch interactive conversion gadget
convert

Convert from one unit type to another
explore_units

Explore conversion table
convertr

convertr