Nothing
adrop <- function(x, drop=TRUE, named.vector=TRUE, one.d.array=FALSE, ...) UseMethod("adrop")
adrop.default <- function(x, drop=TRUE, named.vector=TRUE, one.d.array=FALSE, ...) {
if (is.null(dim(x)))
stop("require an object with a dim attribute")
if (length(list(...)))
if (length(names(list(...))))
stop('have unrecognized ... arguments for adrop.default: ', paste(names(list(...)), collapse=', '))
else
stop('have unrecognized unnamed ... arguments for adrop.default')
x.dim <- dim(x)
if (is.logical(drop)) {
if (length(drop) != length(x.dim))
stop("length of drop is not equal length of dim(x)")
drop <- which(drop)
} else if (is.character(drop)) {
if (any(is.na(i <- match(drop, names(x.dim)))))
stop("dimension names ", paste("'", drop[is.na(i)], "'", sep="", collapse=" "), " not found in x")
drop <- i
} else if (is.null(drop)) {
drop <- numeric(0)
}
if (!is.numeric(drop) || any(is.na(drop)) || any(drop<1 | drop>length(x.dim)))
stop("drop must contain dimension numbers")
if (!all(x.dim[drop]==1))
stop("dimensions to drop (", paste(drop, collapse=", "), ") do not have length 1")
x.dimnames <- dimnames(x)
dimnames(x) <- NULL
dim(x) <- NULL
# can't use indexing like [-drop] because drop can be empty, and that
# doesn't have the right semantics
keep <- setdiff(seq(length.out=length(x.dim)), drop)
if (length(x.dim[keep])>1 || (length(x.dim[keep])==1 && one.d.array)) {
# array result
dim(x) <- x.dim[keep]
if (!is.null(x.dimnames))
dimnames(x) <- x.dimnames[keep]
} else if (length(x.dim[keep])==1 && named.vector) {
# named vector result
names(x) <- x.dimnames[keep][[1]]
} else {
# unnamed vector or single element result
}
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.