add_miles just add unit 'miles' to different R objects

add_miles(x)

Arguments

x

Object with class "data.frame", "matrix", "numeric" or "integer"

Value

Objects of class "data.frame" or "units"

See also

Other Add distance unitts: add_lkm()

Examples

if (FALSE) {
a <- add_miles(rnorm(100)*10)
plot(a)
b <- add_miles(matrix(rnorm(100)*10, ncol = 10))
print(head(b))
}