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 secsWe 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.96357396 0.55729269 0.62623206 0.59527038 0.64899018 0.35815747
## [7] 0.24824815 0.27320555 0.58298298 0.07572249the 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.9271479 1.1145854 1.2524641 1.1905408 1.2979804 0.7163149 0.4964963
## [8] 0.5464111 1.1659660 0.1514450
a * a
## Units: [m^2/s^2]
## [1] 0.928474778 0.310575143 0.392166593 0.354346822 0.421188255 0.128276772
## [7] 0.061627142 0.074641275 0.339869155 0.005733895
a ^ 2
## Units: [m^2/s^2]
## [1] 0.928474778 0.310575143 0.392166593 0.354346822 0.421188255 0.128276772
## [7] 0.061627142 0.074641275 0.339869155 0.005733895
a ** -2
## Units: [s^2/m^2]
## [1] 1.077035 3.219833 2.549937 2.822094 2.374235 7.795644
## [7] 16.226616 13.397413 2.942309 174.401516and convert to the units of the first argument if necessary:
a + b # m/s + km/h -> m/s
## Units: [m/s]
## [1] 1.9271479 1.1145854 1.2524641 1.1905408 1.2979804 0.7163149 0.4964963
## [8] 0.5464111 1.1659660 0.1514450Currently, 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.96357396 0.55729269 0.62623206 0.59527038 0.64899018 0.35815747
## [7] 0.24824815 0.27320555 0.58298298 0.07572249which also work when units need to be converted before they can be simplified:
t <- make_units(min)
a * t
## Units: [m]
## [1] 57.814438 33.437561 37.573924 35.716223 38.939411 21.489448 14.894889
## [8] 16.392333 34.978979 4.543349Simplification to unit-less values gives the “1” as unit:
m <- make_units(m)
a * t / m
## Units: [1]
## [1] 57.814438 33.437561 37.573924 35.716223 38.939411 21.489448 14.894889
## [8] 16.392333 34.978979 4.543349Allowed 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.30900 0.10400 0.13100 0.11800 0.14000 0.04280 0.02050 0.02490 0.11300
## [10] 0.00191
cumsum(a)
## Units: [m/s]
## [1] 0.963574 1.520867 2.147099 2.742369 3.391359 3.749517 3.997765 4.270970
## [9] 4.853953 4.929676
log(a) # base defaults to exp(1)
## Units: [ln(re 1 m.s-1)]
## [1] -0.03710603 -0.58466470 -0.46803427 -0.51873956 -0.43233769 -1.02678253
## [7] -1.39332644 -1.29753082 -0.53959729 -2.58068010
log(a, base = 10)
## Units: [lg(re 1 m.s-1)]
## [1] -0.01611494 -0.25391665 -0.20326470 -0.22528573 -0.18776187 -0.44592599
## [7] -0.60511399 -0.56351048 -0.23434412 -1.12077513
log(a, base = 2)
## Units: [lb(re 1 m.s-1)]
## [1] -0.05353269 -0.84349286 -0.67523072 -0.74838299 -0.62373144 -1.48133407
## [7] -2.01014515 -1.87194128 -0.77847433 -3.72313439Summary 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.96357396 0.55729269 0.62623206 0.59527038 0.64899018 0.35815747
## [7] 0.24824815 0.27320555 0.58298298 0.07572249 0.96357396 0.55729269
## [13] 0.62623206 0.59527038 0.64899018 0.35815747 0.24824815 0.27320555
## [19] 0.58298298 0.07572249concatenation converts to the units of the first argument, if necessary:
c(a,b) # m/s, km/h -> m/s
## Units: [m/s]
## [1] 0.96357396 0.55729269 0.62623206 0.59527038 0.64899018 0.35815747
## [7] 0.24824815 0.27320555 0.58298298 0.07572249 0.96357396 0.55729269
## [13] 0.62623206 0.59527038 0.64899018 0.35815747 0.24824815 0.27320555
## [19] 0.58298298 0.07572249
c(b,a) # km/h, m/s -> km/h
## Units: [km/h]
## [1] 3.4688663 2.0062537 2.2544354 2.1429734 2.3363647 1.2893669 0.8936933
## [8] 0.9835400 2.0987387 0.2726010 3.4688663 2.0062537 2.2544354 2.1429734
## [15] 2.3363647 1.2893669 0.8936933 0.9835400 2.0987387 0.2726010difftimeFrom 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 4but
set_units(matrix(1:4,2,2), m/s) %*% set_units(4:3, m/s)
## Units: [m^2/s^2]
## [,1]
## [1,] 13
## [2,] 20strips units.
data.framesunits 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 consumptionunits_options(negative_power = TRUE) # division becomes ^-1
plot(displacement, consumption) # division in consumptionAs usual, units modify automatically in expressions:
units_options(negative_power = TRUE) # division becomes ^-1
par(mar = mar)
plot(displacement, consumption)