If the reference information needs to be retained during the imputation
if TRUE, then reference information can be retained from the returned list by
calling ID. If FALSE, then no reference information will be retained.
...
other arguments
Value
If ID = FALSE, then return the imputed data matrix with no
missing values. If ID = TRUE, then return a list of two components:
imputed
The imputed data matrix with no missing values
ID
The reference information during the imputation
References
Lingbing Feng, Gen Nowak, Alan. H. Welsh and Terry. J. O'Neill
(2014): CUTOFF: A Spatio-temporal Imputation Method,
Journal of Hydrology. (submitted)
data(hqmr.data)
#' # check the number of missing valuesnmissing(hqmr.data[, -79])
# impute the data by the CUTOFF methodimpdata <- Cut(data = hqmr.data)
nmissing(impdata)