imputeLessThans: Impute Censored Values

View source: R/imputeLessThans.R

imputeLessThansR Documentation

Impute Censored Values

Description

Imputes substitute values for left-censored values using the expectation maximization method.

Usage

imputeLessThans(..., type = c("MLE", "robust"), initial = c("complete.obs",
  "multRepl"))

## Default S3 method:
imputeLessThans(..., type = c("MLE", "robust"),
  initial = c("complete.obs", "multRepl"))

## S3 method for class 'data.frame'
imputeLessThans(..., group = NULL, type = c("MLE",
  "robust"), initial = c("complete.obs", "multRepl"))

Arguments

...

either a data frame that contains columns of class "qw" or any combination of individual vectors of class "numeric," "lcens," or "qw." Missing values are removed before processing.

type

the type of estimate, "MLE" for maximum likelihood estimates, or "robust" for robust estimation methods. See lrEM for details.

initial

the method to use for the initial log-ratio covariance matrix, either "complete.obs" that uses only the rows with no censored data to construct the matrix, or "multRepl" that uses simple substitution of censored values to compute the matrix. See lrEM for details.

group

character string, the name of the column in the data frame to indicate a group for imputation. See Details

Details

Imputation of left-censored data requires the assumption of multivariate log-normality for a single population. If the data represent samples from multiple populations, then they should be identified by the group argument. The minimum size for any group is 3.

Value

A data frame containing the original data with imputed censored values.

See Also

lrEM, mImputeLessThans


USGS-R/smwrQW documentation built on Oct. 11, 2022, 6:13 a.m.