Return mode. One of "numeric", "character", or
"factor".
column
Name of the column to extract from the object.
Details
Since objects of class "Hist" are also matrices, all columns are
numeric or integer valued.
To extract a correctly labeled version,
the attribute states of the object is used to generate factor
levels.
dat= data.frame(time=1:5,event=letters[1:5])
x=with(dat,Hist(time,event))
## inside integerunclass(x)
## extract event (the extra level "unknown" is for censored data) getEvent(x)