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 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 the udunits2 C
library 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.
We can set units to numerical values by set_units
:
library(units)
(a <- set_units(runif(10), m/s))
## Units: [m/s]
## [1] 0.93102566 0.01943776 0.91656635 0.82111031 0.02491758 0.13838348
## [7] 0.36339338 0.85632497 0.18603743 0.95301965
the result, e.g.
literally means “10 times 1 m divided by 1 s”. In writing, the “1” values are omitted, and the multiplication is implicit.
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
Arithmetic operations verify units, and create new ones
a + a
## Units: [m/s]
## [1] 1.86205132 0.03887551 1.83313271 1.64222062 0.04983516 0.27676696
## [7] 0.72678676 1.71264993 0.37207486 1.90603931
a * a
## Units: [m^2/s^2]
## [1] 0.8668087820 0.0003778264 0.8400938804 0.6742221432 0.0006208857
## [6] 0.0191499872 0.1320547483 0.7332924471 0.0346099249 0.9082464616
a ^ 2
## Units: [m^2/s^2]
## [1] 0.8668087820 0.0003778264 0.8400938804 0.6742221432 0.0006208857
## [6] 0.0191499872 0.1320547483 0.7332924471 0.0346099249 0.9082464616
a ** -2
## Units: [s^2/m^2]
## [1] 1.153657 2646.718298 1.190343 1.483191 1610.602378 52.219356
## [7] 7.572617 1.363712 28.893446 1.101023
and convert to the units of the first argument if necessary:
a + b # m/s + km/h -> m/s
## Units: [m/s]
## [1] 1.86205132 0.03887551 1.83313271 1.64222062 0.04983516 0.27676696
## [7] 0.72678676 1.71264993 0.37207486 1.90603931
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 <- make_units(s)
a * t
## Units: [m]
## [1] 0.93102566 0.01943776 0.91656635 0.82111031 0.02491758 0.13838348
## [7] 0.36339338 0.85632497 0.18603743 0.95301965
which also work when units need to be converted before they can be simplified:
t <- make_units(min)
a * t
## Units: [m]
## [1] 55.861540 1.166265 54.993981 49.266619 1.495055 8.303009 21.803603
## [8] 51.379498 11.162246 57.181179
Simplification to unit-less values gives the “1” as unit:
m <- make_units(m)
a * t / m
## Units: [1]
## [1] 55.861540 1.166265 54.993981 49.266619 1.495055 8.303009 21.803603
## [8] 51.379498 11.162246 57.181179
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.289000 0.000126 0.280000 0.225000 0.000207 0.006380 0.044000 0.244000
## [9] 0.011500 0.303000
cumsum(a)
## Units: [m/s]
## [1] 0.9310257 0.9504634 1.8670298 2.6881401 2.7130577 2.8514411 3.2148345
## [8] 4.0711595 4.2571969 5.2102166
log(a) # base defaults to exp(1)
## Units: [(ln(re 1 m.s-1))]
## [1] -0.07146844 -3.94053789 -0.08712082 -0.19709782 -3.69218177 -1.97772662
## [7] -1.01226934 -0.15510534 -1.68180740 -0.04811975
log(a, base = 10)
## Units: [(lg(re 1 m.s-1))]
## [1] -0.03103835 -1.71135386 -0.03783609 -0.08559849 -1.60349417 -0.85891576
## [7] -0.43962299 -0.06736139 -0.73039967 -0.02089814
log(a, base = 2)
## Units: [(lb(re 1 m.s-1))]
## [1] -0.10310716 -5.68499447 -0.12568877 -0.28435204 -5.32669233 -2.85325638
## [7] -1.46039596 -0.22376971 -2.42633519 -0.06942213
Summary functions sum
, min
,
max
, and range
are allowed:
Following difftime
, printing behaves differently for
length-one vectors:
The usual subsetting rules work:
c(a,a)
## Units: [m/s]
## [1] 0.93102566 0.01943776 0.91656635 0.82111031 0.02491758 0.13838348
## [7] 0.36339338 0.85632497 0.18603743 0.95301965 0.93102566 0.01943776
## [13] 0.91656635 0.82111031 0.02491758 0.13838348 0.36339338 0.85632497
## [19] 0.18603743 0.95301965
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.93102566 0.01943776 0.91656635 0.82111031 0.02491758 0.13838348
## [7] 0.36339338 0.85632497 0.18603743 0.95301965 0.93102566 0.01943776
## [13] 0.91656635 0.82111031 0.02491758 0.13838348 0.36339338 0.85632497
## [19] 0.18603743 0.95301965
c(b,a) # km/h, m/s -> km/h
## Units: [km/h]
## [1] 3.35169238 0.06997592 3.29963887 2.95599712 0.08970328 0.49818052
## [7] 1.30821617 3.08276988 0.66973474 3.43087076 3.35169238 0.06997592
## [13] 3.29963887 2.95599712 0.08970328 0.49818052 1.30821617 3.08276988
## [19] 0.66973474 3.43087076
difftime
From difftime
to units
:
vice versa:
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 * m/s)
## Units: [m^2/s^2]
## [,1] [,2]
## [1,] 1 3
## [2,] 2 4
but
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, and also parsed by
as_units
:
udunits understands such string, and can convert them
Printing units in this form is done by
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 * as_units("in")^3
units(displacement) = make_units(cm^3)
weight = mtcars$wt * 1000 * make_units(lb)
units(weight) = make_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 = as_units("gallon")
consumption = mtcars$mpg * make_units(mi/gallon)
units(consumption) = make_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: