Nothing
# Author: Robert J. Hijmans
# Date : March 2009
# Version 1.0
# Licence GPL v3
# revised April 2011
setMethod('crosstab', signature(x='Raster', y='Raster'),
function(x, y, digits=0, long=FALSE, useNA=FALSE, progress='', ...) {
x <- stack(x, y)
crosstab(x, digits=digits, long=long, useNA=useNA, progress=progress, ...)
}
)
setMethod('crosstab', signature(x='RasterStackBrick', y='missing'),
function(x, digits=0, long=FALSE, useNA=FALSE, progress='', ...) {
nl <- nlayers(x)
if (nl < 2) {
stop('crosstab needs at least 2 layers')
}
nms <- names(x)
if (canProcessInMemory(x)) {
res <- getValues(x)
res <- lapply(1:nl, function(i) round(res[, i], digits=digits))
res <- do.call(table, c(res, useNA='ifany'))
res <- as.data.frame(res)
} else {
tr <- blockSize(x)
pb <- pbCreate(tr$n, label='crosstab', progress=progress)
res <- NULL
for (i in 1:tr$n) {
d <- getValuesBlock(x, row=tr$row[i], nrows=tr$nrows[i])
d <- lapply(1:nl, function(i) round(d[, i], digits=digits))
d <- do.call(table, c(d, useNA='ifany'))
d <- as.data.frame(d)
res <- rbind(res, d)
pbStep(pb, i)
}
pbClose(pb)
res <- res[res$Freq > 0, ,drop=FALSE]
# some complexity to aggregate keeping
# variables that are NA
if (useNA) {
for (i in 1:(ncol(res)-1)) {
if (any(is.na(res[,i]))) {
res[,i] <- factor(res[,i], levels=c(levels(res[,i]), NA), exclude=NULL)
}
}
}
res <- aggregate(res[, ncol(res), drop=FALSE], res[, 1:(ncol(res)-1), drop=FALSE], sum)
}
for (i in 1:(ncol(res)-1)) {
# get rid of factors
res[,i] <- as.numeric(as.character(res[,i]))
}
if (nrow(res) == 0) {
res <- data.frame(matrix(nrow=0, ncol=length(nms)+1))
}
colnames(res) <- c(nms, 'Freq')
if (! useNA ) {
i <- apply(res, 1, function(x) any(is.na(x)))
res <- res[!i, ,drop=FALSE]
}
if (!long) {
f <- eval(parse(text=paste('Freq ~ ', paste(nms , collapse='+'))))
res <- stats::xtabs(f, data=res, addNA=useNA)
} else {
res <- res[res$Freq > 0, ,drop=FALSE]
res <- res[order(res[,1], res[,2]), ]
rownames(res) <- NULL
}
return(res)
}
)
.oldcrosstab <- function(x, y, digits=0, long=FALSE, progress, ...) {
# old function, not used any more
compareRaster(c(x, y))
if (missing(progress)) { progress <- .progress() }
if (canProcessInMemory(x, 3) | ( inMemory(x) & inMemory(y) )) {
res <- table(first=round(getValues(x), digits=digits), second=round(getValues(y), digits=digits), ...)
} else {
res <- NULL
tr <- blockSize(x, n=2)
pb <- pbCreate(tr$n, label='crosstab', progress=progress)
for (i in 1:tr$n) {
d <- table( round(getValuesBlock(x, row=tr$row[i], nrows=tr$nrows[i]), digits=digits), round(getValuesBlock(y, row=tr$row[i], nrows=tr$nrows[i]), digits=digits), ...)
if (length(dim(d))==1) {
first = as.numeric(names(d))
second = first
d <- matrix(d)
} else {
first = as.numeric(rep(rownames(d), each=ncol(d)))
second = as.numeric(rep(colnames(d), times=nrow(d)))
}
count = as.vector(t(d))
res = rbind(res, cbind(first, second, count))
pbStep(pb, i)
}
pbClose(pb)
res <- stats::xtabs(count~first+second, data=res)
}
if (long) {
return( as.data.frame(res) )
} else {
return(res)
}
}
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.