Create a Censored Object
Create a censored object, usually used as a response variable in a model formula.
Cen(obs, censored, type = "left")
obs |
A numeric vector of observations. This includes both censored and uncensored observations. |
censored |
A logical vector indicating TRUE where an observation in obs is censored (a less-than value) and FALSE otherwise. |
type |
character string specifying the type of censoring. Possible values are
|
An object of class Cen
.
This, and related routines, are front ends to routines in the
survival
package. Since the survival routines can not handle
left-censored data, these routines transparently handle “flipping"
input data and resultant calculations. The Cen
function provides
part of the necessary framework for flipping.
R. Lopaka Lee <rclee@usgs.gov>
Dennis Helsel <dhelsel@practicalstats.com>
Helsel, Dennis R. (2005). Nondectects and Data Analysis; Statistics for censored environmental data. John Wiley and Sons, USA, NJ.
obs = c(0.5, 0.5, 1.0, 1.5, 5.0, 10, 100) censored = c(TRUE, FALSE, FALSE, TRUE, FALSE, FALSE, FALSE) Cen(obs, censored) flip(Cen(obs, censored))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.