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.9651788 0.5545841 0.4598375 0.2619782 0.7064613 0.2618167 0.1999798
## [8] 0.7909132 0.4065691 0.0575459
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.9303576 1.1091682 0.9196749 0.5239565 1.4129225 0.5236334 0.3999596
## [8] 1.5818263 0.8131382 0.1150918
a * a
## Units: [m^2/s^2]
## [1] 0.93157016 0.30756353 0.21145050 0.06863259 0.49908751 0.06854798
## [7] 0.03999192 0.62554361 0.16529843 0.00331153
a ^ 2
## Units: [m^2/s^2]
## [1] 0.93157016 0.30756353 0.21145050 0.06863259 0.49908751 0.06854798
## [7] 0.03999192 0.62554361 0.16529843 0.00331153
a ** -2
## Units: [s^2/m^2]
## [1] 1.073456 3.251361 4.729239 14.570337 2.003657 14.588323
## [7] 25.005048 1.598610 6.049664 301.975190
and convert to the units of the first argument if necessary:
a + b # m/s + km/h -> m/s
## Units: [m/s]
## [1] 1.9303576 1.1091682 0.9196749 0.5239565 1.4129225 0.5236334 0.3999596
## [8] 1.5818263 0.8131382 0.1150918
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.9651788 0.5545841 0.4598375 0.2619782 0.7064613 0.2618167 0.1999798
## [8] 0.7909132 0.4065691 0.0575459
which also work when units need to be converted before they can be simplified:
t <- make_units(min)
a * t
## Units: [m]
## [1] 57.910729 33.275046 27.590248 15.718694 42.387676 15.709001 11.998789
## [8] 47.454789 24.394146 3.452754
Simplification to unit-less values gives the “1” as unit:
m <- make_units(m)
a * t / m
## Units: [1]
## [1] 57.910729 33.275046 27.590248 15.718694 42.387676 15.709001 11.998789
## [8] 47.454789 24.394146 3.452754
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.3110 0.1030 0.0705 0.0229 0.1660 0.0228 0.0133 0.2090 0.0551 0.0011
cumsum(a)
## Units: [m/s]
## [1] 0.9651788 1.5197629 1.9796004 2.2415786 2.9480399 3.2098566 3.4098364
## [8] 4.2007495 4.6073186 4.6648645
log(a) # base defaults to exp(1)
## Units: [ln(re 1 m.s-1)]
## [1] -0.03544189 -0.58953681 -0.77688218 -1.33949387 -0.34748691 -1.34011071
## [7] -1.60953887 -0.23456711 -0.90000138 -2.85517243
log(a, base = 10)
## Units: [lg(re 1 m.s-1)]
## [1] -0.01539222 -0.25603258 -0.33739564 -0.58173479 -0.15091165 -0.58200268
## [7] -0.69901385 -0.10187120 -0.39086563 -1.23998563
log(a, base = 2)
## Units: [lb(re 1 m.s-1)]
## [1] -0.05113183 -0.85052183 -1.12080406 -1.93248116 -0.50131765 -1.93337107
## [7] -2.32207375 -0.33840881 -1.29842752 -4.11914311
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.9651788 0.5545841 0.4598375 0.2619782 0.7064613 0.2618167 0.1999798
## [8] 0.7909132 0.4065691 0.0575459 0.9651788 0.5545841 0.4598375 0.2619782
## [15] 0.7064613 0.2618167 0.1999798 0.7909132 0.4065691 0.0575459
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.9651788 0.5545841 0.4598375 0.2619782 0.7064613 0.2618167 0.1999798
## [8] 0.7909132 0.4065691 0.0575459 0.9651788 0.5545841 0.4598375 0.2619782
## [15] 0.7064613 0.2618167 0.1999798 0.7909132 0.4065691 0.0575459
c(b,a) # km/h, m/s -> km/h
## Units: [km/h]
## [1] 3.4746438 1.9965028 1.6554149 0.9431216 2.5432605 0.9425401 0.7199273
## [8] 2.8472873 1.4636488 0.2071652 3.4746438 1.9965028 1.6554149 0.9431216
## [15] 2.5432605 0.9425401 0.7199273 2.8472873 1.4636488 0.2071652
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:
units_options(negative_power = TRUE) # division becomes ^-1
par(mar = mar)
plot(displacement, consumption)