#'Numeric Representations
#'
#'Converts data to numeric values: method for "qw" data.
#'
#' @param x the object to be converted.
#' @param \dots further arguments passed to or from other methods.
#' @return A numeric representation of \code{x}, using a method commonly refered
#'to as simple substitution.
#' @note The process of simple substitution proceeds in 4 steps for each kind of
#'censoring: none, interval, left and right. First uncensored data are
#'retained as is. Interval-censored data are converted by computing the mid
#'rnge. Left-censored data are converted sequentially from the lowest
#'censoring level, which is set to 1/2 the reporting level, any subsequent
#'levels are replaced by the mean of all values less than the current reporting
#'level. Conversion of right-censored data are not implemented in the current version
#'and result in an error.\cr
#'
#'The function \code{as.double} is executed for \code{as.numeric}.
#' @seealso \code{\link{fillIn}}
#' @keywords manip
#' @examples
#'
#'## Create a simple qw object
#'Test.qw <- as.qw(c(1,2,3,2,4,4), c("<", "<", "<", " ", " ", " "), "", NA_real_,
#' "Miss", "None", "Mine", "TEST", "")
#'as.double(Test.qw)
#'as.numeric(Test.qw)
#'
#' @rdname as.double
#' @export
#' @method as.double qw
as.double.qw <- function(x, ...) {
Cen <- censoring(x)
if(Cen == "none") { # Just return the raw data
return(x@.Data[,1L])
}
# First process interval censored data to set values to midrange
picks <- which(!(x@remark.codes == "<") & !(x@remark.codes == ">"))
x@.Data[picks, ] <- rowMeans(x@.Data[picks, ])
x@remark.codes[picks] <- ""
Cen <- censoring(x)
# check if all done!
if(Cen == "none") { # Just return the raw data
return(x@.Data[,1L])
}
if(Cen == "left") {
## Convert to lcens and process those data
x <- as.lcens(x)
Cl <- censorLevels(x)
retval <- x@.Data[, 1L]
if(length(Cl) == 1L && Cl == -Inf)
return(retval) # no censoring
for(i in Cl) {
picks <- na2miss(retval < i, FALSE)
if(any(picks))
xltCl <- mean(retval[picks])
else
xltCl <- i/2
picks <- na2miss(retval == i & x@censor.codes, FALSE)
retval[picks] <- xltCl
}
return(retval)
}
## Cen must be "multiple"
stop("right-censored conversion not yet implemented")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.