Computes plotting positions for uncensored observations based on the Cohn method grouping. This is used in hydrologic statistics and censoring methods.
hc_ppoints_uncen(obs, censored, cn = NULL, na.action = getOption("na.action"))
A numeric vector of plotting positions corresponding to the uncensored 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")
).