Nothing
mitmlComplete <- function(x, print = "all", force.list = FALSE){
if(sum(print <= 0) > 1) stop("Only one negative or zero value is allowed in 'print'.")
dat <- x$data
srt <- order( attr(x$data, "sort") )
labs <- attr(x$data, "labels")
method <- class(x)[2]
m <- x$iter$m
ind <- x$index.mat
rpm <- x$replacement.mat
if(is.numeric(print)){
if(length(print) == 1){
if(print > 0){
com <- .completeOne(dat, print, ind, rpm, method)
out <- com[srt,]
}else{
out <- .stripDataAttributes(dat[srt,])
}
if(force.list) out <- list(out)
}else{
out <- list()
for(ii in print){
if(ii > 0){
com <- .completeOne(dat, ii, ind, rpm, method)
out <- c(out, list(com[srt,]))
}else{
out <- c(out, list(.stripDataAttributes(dat[srt,])))
}
}
}
}else{
if(!print %in% c("list", "all")) stop("Invalid 'print' argument.")
out <- list()
for(ii in 1:m){
com <- .completeOne(dat, ii, ind, rpm, method)
out <- c(out, list(com[srt,]))
}
}
if(is.list(out) && !is.data.frame(out)) class(out) <- c("mitml.list", "list")
return(out)
}
.completeOne <- function(x, i, ind, rpm, method){
if(method == "jomo"){
fac <- which(colnames(x) %in% names(attr(x, "labels")))
nofac <- !(ind[,2] %in% fac)
if(any(nofac)) x[ ind[nofac, ,drop = F] ] <- rpm[nofac, i, drop = F]
for(ff in fac){
fi <- which(ind[,2] == ff)
lev <- attr(x, "labels")[[colnames(x)[ff]]]
if(length(fi)>0) x[ ind[fi, ,drop = F] ] <- lev[rpm[fi, i]]
}
}else{
x[ind] <- rpm[,i]
}
.stripDataAttributes(x)
}
.stripDataAttributes <- function(x){
attr(x, "sort") <- NULL
attr(x, "group") <- NULL
attr(x, "levels") <- NULL
attr(x, "labels") <- NULL
x
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.