Computes plotting positions for censored observations using the Cohn method grouping. This is primarily for hydrologic data with left-censoring.
hc_ppoints_cen(obs, censored, cn = NULL, na.action = getOption("na.action"))
A numeric vector of plotting positions corresponding to the censored observations.
A numeric vector of observed values.
A logical vector indicating which observations are censored (TRUE
for censored, FALSE
otherwise).
An optional list containing Cohn grouping information (usually from cohn()
); if missing, it will be computed internally.
A function to handle missing values (default is getOption("na.action")
).