units {Hmisc}R Documentation

Units Attribute of a Vector

Description

Sets or retrieves the "units" attribute of an object. For units.default replaces the builtin version, which only works for time series objects. If the variable is also given a label, subsetting (using [.labelled) will retain the "units" attribute. For S-Plus 6 which uses version 4 of the S language, the latter does not work.

Usage

units(x, ...)
## Default S3 method:
units(x, none='', ...)
units(x) <- value

Arguments

x any object
... ignored
value the units of the object, or ""
none value to which to set result if no appropriate attribute is found

Value

the units attribute of x, if any; otherwise, the units attribute of the tspar attribute of x if any; otherwise the value none

See Also

label

Examples

fail.time <- c(10,20)
units(fail.time) <- "Day"
describe(fail.time)
label(fail.time) <- 'Failure Time'
fail.time
## Not run: 
f <- cph(Surv(fail.time, event) ~ xx)
plot(xx,xx2,xlab=paste(label(xx),", ",units(xx),"s",sep=""))
## End(Not run)

[Package Hmisc version 3.0-10 Index]