R has little support for physical measurement units. The exception is formed by time differences: time differences objects of class difftime
have a units
attribute that can be modified:
t1 = Sys.time()
t2 = t1 + 3600
d = t2 - t1
class(d)
## [1] "difftime"
units(d)
## [1] "hours"
d
## Time difference of 1 hours
units(d) = "secs"
d
## Time difference of 3600 secs
We see here that the units
method is used to retrieve and modify the unit of time differences.
The units
package generalizes this idea to other physical units, building upon the udunits2 R package, which in turn is build upon the udunits2 C library. The udunits2
library provides the following operations:
m/s
is a valid physical unitm/s
and km/h
are convertibleThe units
R package uses R package udunits2
to extend R with functionality for manipulating numeric vectors that have physical measurement units associated with them, in a similar way as difftime
objects behave.
Existing units are resolved from a database in the units
package, called ud_units
. We can see the first three elements of it by
library(units)
ud_units[1:3]
## $m
## 1 m
##
## $kg
## 1 kg
##
## $s
## 1 s
We can set units to numerical values by set_units
:
(a <- set_units(runif(10), m/s))
## Units: m/s
## [1] 0.8092862 0.3423881 0.5535518 0.9561717 0.4793199 0.7235380 0.2447016
## [8] 0.7628757 0.4816168 0.7304362
the result, e.g.
set_units(10, m/s)
## 10 m/s
literally means “10 times 1 m divided by 1 s”. In writing, the “1” values are omitted, and the multiplication is implicit.
The units
package comes with a list of over 3000 predefined units,
length(ud_units)
## [1] 3225
We can retrieve a single unit from the ud_units
database by
with(ud_units, km/h)
## 1 km/h
When conversion is meaningful, such as hours to seconds or meters to kilometers, conversion can be done explicitly by setting the units of a vector
b = a
units(b) <- with(ud_units, km/h)
b
## Units: km/h
## [1] 2.9134305 1.2325971 1.9927865 3.4422180 1.7255517 2.6047369 0.8809258
## [8] 2.7463525 1.7338205 2.6295704
Arithmetic operations verify units, and create new ones
a + a
## Units: m/s
## [1] 1.6185725 0.6847761 1.1071036 1.9123433 0.9586398 1.4470760 0.4894032
## [8] 1.5257514 0.9632336 1.4608724
a * a
## Units: m^2/s^2
## [1] 0.65494423 0.11722959 0.30641960 0.91426427 0.22974757 0.52350727
## [7] 0.05987887 0.58197931 0.23195474 0.53353706
a ^ 2
## Units: m^2/s^2
## [1] 0.65494423 0.11722959 0.30641960 0.91426427 0.22974757 0.52350727
## [7] 0.05987887 0.58197931 0.23195474 0.53353706
a ** -2
## Units: s^2/m^2
## [1] 1.526848 8.530269 3.263499 1.093776 4.352603 1.910193 16.700381
## [8] 1.718274 4.311186 1.874284
and convert to the units of the first argument if necessary:
a + b # m/s + km/h -> m/s
## Units: m/s
## [1] 1.6185725 0.6847761 1.1071036 1.9123433 0.9586398 1.4470760 0.4894032
## [8] 1.5257514 0.9632336 1.4608724
Currently, powers are only supported for integer powers, so using a ** 2.5
would result in an error.
There are some basic simplification of units:
t <- with(ud_units, s)
a * t
## Units: m
## [1] 0.8092862 0.3423881 0.5535518 0.9561717 0.4793199 0.7235380 0.2447016
## [8] 0.7628757 0.4816168 0.7304362
which also work when units need to be converted before they can be simplified:
t <- with(ud_units, min)
a * t
## Units: m
## [1] 48.55717 20.54328 33.21311 57.37030 28.75919 43.41228 14.68210
## [8] 45.77254 28.89701 43.82617
Simplification to unit-less values gives the “1” as unit:
m <- with(ud_units, m)
a * t / m
## Units: 1
## [1] 48.55717 20.54328 33.21311 57.37030 28.75919 43.41228 14.68210
## [8] 45.77254 28.89701 43.82617
Allowed operations that require convertible units are +
, -
, ==
, !=
, <
, >
, <=
, >=
. Operations that lead to new units are *
, /
, and the power operations **
and ^
.
Mathematical operations allowed are: abs
, sign
, floor
, ceiling
, trunc
, round
, signif
, log
, cumsum
, cummax
, cummin
.
signif(a ** 2 / 3, 3)
## Units: m^2/s^2
## [1] 0.2180 0.0391 0.1020 0.3050 0.0766 0.1750 0.0200 0.1940 0.0773 0.1780
cumsum(a)
## Units: m/s
## [1] 0.8092862 1.1516743 1.7052261 2.6613978 3.1407177 3.8642557 4.1089573
## [8] 4.8718330 5.3534498 6.0838860
log(a) # base defaults to exp(1)
## Units: ln(m/s)
## [1] -0.21160259 -1.07181047 -0.59139994 -0.04481781 -0.73538705
## [6] -0.32360218 -1.40771578 -0.27066019 -0.73060650 -0.31411337
log(a, base = 10)
## Units: lg(m/s)
## [1] -0.09189784 -0.46548137 -0.25684173 -0.01946413 -0.31937454
## [6] -0.14053864 -0.61136319 -0.11754623 -0.31729837 -0.13641771
log(a, base = 2)
## Units: lb(m/s)
## [1] -0.30527801 -1.54629565 -0.85320977 -0.06465843 -1.06093924
## [6] -0.46685926 -2.03090457 -0.39048011 -1.05404238 -0.45316981
Summary functions sum
, min
, max
, and range
are allowed:
sum(a)
## 6.083886 m/s
min(a)
## 0.2447016 m/s
max(a)
## 0.9561717 m/s
range(a)
## Units: m/s
## [1] 0.2447016 0.9561717
with(ud_units, min(m/s, km/h)) # converts to first unit:
## 0.2777778 m/s
Following difftime
, printing behaves differently for length-one vectors:
a
## Units: m/s
## [1] 0.8092862 0.3423881 0.5535518 0.9561717 0.4793199 0.7235380 0.2447016
## [8] 0.7628757 0.4816168 0.7304362
a[1]
## 0.8092862 m/s
The usual subsetting rules work:
a[2:5]
## Units: m/s
## [1] 0.3423881 0.5535518 0.9561717 0.4793199
a[-(1:9)]
## 0.7304362 m/s
c(a,a)
## Units: m/s
## [1] 0.8092862 0.3423881 0.5535518 0.9561717 0.4793199 0.7235380 0.2447016
## [8] 0.7628757 0.4816168 0.7304362 0.8092862 0.3423881 0.5535518 0.9561717
## [15] 0.4793199 0.7235380 0.2447016 0.7628757 0.4816168 0.7304362
concatenation converts to the units of the first argument, if necessary:
c(a,b) # m/s, km/h -> m/s
## Units: m/s
## [1] 0.8092862 0.3423881 0.5535518 0.9561717 0.4793199 0.7235380 0.2447016
## [8] 0.7628757 0.4816168 0.7304362 0.8092862 0.3423881 0.5535518 0.9561717
## [15] 0.4793199 0.7235380 0.2447016 0.7628757 0.4816168 0.7304362
c(b,a) # km/h, m/s -> km/h
## Units: km/h
## [1] 2.9134305 1.2325971 1.9927865 3.4422180 1.7255517 2.6047369 0.8809258
## [8] 2.7463525 1.7338205 2.6295704 2.9134305 1.2325971 1.9927865 3.4422180
## [15] 1.7255517 2.6047369 0.8809258 2.7463525 1.7338205 2.6295704
difftime
From difftime
to units
:
t1 = Sys.time()
t2 = t1 + 3600
d = t2 - t1
(du = as.units(d))
## 1 h
vice versa:
(dt = as.dt(du))
## Time difference of 1 hours
class(dt)
## [1] "difftime"
matrix
objectsset_units(matrix(1:4,2,2), m/s)
## Units: m/s
## [,1] [,2]
## [1,] 1 3
## [2,] 2 4
set_units(matrix(1:4,2,2), m/s * 4 * m/s)
## Units: m^2/s^2
## [,1] [,2]
## [1,] 4 12
## [2,] 8 16
but
set_units(matrix(1:4,2,2), m/s) %*% set_units(4:3, m/s)
## [,1]
## [1,] 13
## [2,] 20
strips units.
data.frame
sunits in data.frame
objects are printed, but do not appear in summary
:.
set.seed(131)
d <- data.frame(x = runif(4),
y = set_units(runif(4), s),
z = set_units(1:4, m/s))
d
## x y z
## 1 0.2064370 0.8463468 s 1 m/s
## 2 0.1249422 0.5292048 s 2 m/s
## 3 0.2932732 0.5186254 s 3 m/s
## 4 0.3757797 0.2378545 s 4 m/s
summary(d)
## x y z
## Min. :0.1249 Min. :0.2379 Min. :1.00
## 1st Qu.:0.1861 1st Qu.:0.4484 1st Qu.:1.75
## Median :0.2499 Median :0.5239 Median :2.50
## Mean :0.2501 Mean :0.5330 Mean :2.50
## 3rd Qu.:0.3139 3rd Qu.:0.6085 3rd Qu.:3.25
## Max. :0.3758 Max. :0.8463 Max. :4.00
d$yz = with(d, y * z)
d
## x y z yz
## 1 0.2064370 0.8463468 s 1 m/s 0.8463468 m
## 2 0.1249422 0.5292048 s 2 m/s 1.0584095 m
## 3 0.2932732 0.5186254 s 3 m/s 1.5558761 m
## 4 0.3757797 0.2378545 s 4 m/s 0.9514180 m
d[1, "yz"]
## 0.8463468 m
Units are often written in the form m2 s-1
, for square meter per second. This can be defined as unit, but is not interpreted by R:
(x = 1:10 * make_unit("m2 s-1"))
## Units: (m2 s-1)
## [1] 1 2 3 4 5 6 7 8 9 10
udunits understands such string, and can convert them
y = 1:10 * with(ud_units, m^2/s)
x + y
## Units: (m2 s-1)
## [1] 2 4 6 8 10 12 14 16 18 20
but R cannot simplify them:
x/y
## Units: (m2 s-1)*s/m^2
## [1] 1 1 1 1 1 1 1 1 1 1
Instead, we can tell R to parse such a string, which then allows simplification:
(z = 1:10 * parse_unit("m2 s-1"))
## Units: m^2/s
## [1] 1 2 3 4 5 6 7 8 9 10
z + y
## Units: m^2/s
## [1] 2 4 6 8 10 12 14 16 18 20
z / y
## Units: 1
## [1] 1 1 1 1 1 1 1 1 1 1
Printing units in this form is done by
as_cf(z)
## [1] "m2 s-1"
Base scatter plots and histograms support automatic unit placement in axis labels. In the following example we first convert to SI units. (Unit in
needs a bit special treatment, because in
is a reserved word in R.)
mar = par("mar") + c(0, .3, 0, 0)
displacement = mtcars$disp * ud_units[["in"]]^3
units(displacement) = with(ud_units, cm^3)
weight = mtcars$wt * 1000 * with(ud_units, lb)
units(weight) = with(ud_units, kg)
par(mar = mar)
plot(weight, displacement)
We can change grouping symbols from [ ]
into ( )
:
units_options(group = c("(", ")") ) # parenthesis instead of square brackets
par(mar = mar)
plot(weight, displacement)
We can also remove grouping symbols, increase space between variable name and unit by:
units_options(sep = c("~~~", "~"), group = c("", "")) # no brackets; extra space
par(mar = mar)
plot(weight, displacement)
More complex units can be plotted either with negative powers, or as divisions, by modifying one of units
’s global options using units_options
:
gallon = make_unit("gallon")
consumption = mtcars$mpg * with(ud_units, mi/gallon)
units(consumption) = with(ud_units, km/l)
par(mar = mar)
plot(displacement, consumption) # division in consumption
units_options(negative_power = TRUE) # division becomes ^-1
plot(displacement, consumption) # division in consumption
As usual, units modify automatically in expressions:
units_options(negative_power = TRUE) # division becomes ^-1
par(mar = mar)
plot(displacement, consumption)
plot(1/displacement, 1/consumption)