Last chance! 50% off unlimited learning
Sale ends in
"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.units(x, ...)
## S3 method for class 'default':
units(x, none='', \dots)
units(x) <- value
units
attribute of
the tspar
attribute of x
if any; otherwise the value none
label
fail.time <- c(10,20)
units(fail.time) <- "Day"
describe(fail.time)
label(fail.time) <- 'Failure Time'
fail.time
f <- cph(Surv(fail.time, event) ~ xx)
plot(xx,xx2,xlab=paste(label(xx),", ",units(xx),"s",sep=""))
Run the code above in your browser using DataLab