convert {convertr} | R Documentation |
Converts numeric vectors from one unit to another Approximately 1500 units
are available.
convert_gadget
can help you build valid convert()
expressions and
explore_units
provides an interface for exploring the conversion_table
which underlies the computation.
convert(vector, origin, target)
vector |
A numeric vector to be converted |
origin |
The catalog symbol of the current unit. |
target |
The catalog symbol of unit you want to convert to. |
A numeric vector
convert(1:20, "kg", "g")
convert(1:20, "galUK/min.ft2", "kft/s")
## Not run:
convert(1:20, "kg", "km2")
## End(Not run)