Nothing
mxy.abs.plot <- function (V, Ngc, Ngr, Nsc, Nsr, color.lim = c(0, 1), color = "red",
xlab = "Columns", ylab = "Rows", ...)
{
opo <- par(no.readonly = TRUE)
V <- abs(V)
### CONVERSION FROM VECTOR TO MATRIX
tmp <- matrix(nrow = Nsr)
for (s in 1:(Ngc * Ngr)) {
tmpmatrix <- matrix(V[((s - 1) * Nsr * Nsc + 1):(s *
Nsr * Nsc)], nrow = Nsr, ncol = Nsc, byrow = TRUE)
tmp <- cbind(tmp, tmpmatrix)
}
tmp <- tmp[, -1]
cutx <- (Nsc * Ngc)
smatrix <- tmp[, 1:cutx]
if (Ngr > 1){
for (i in 2:Ngr) {
smatrix <- rbind(smatrix, tmp[, ((i - 1) * cutx + 1):(i *
cutx)])
}
}
#### COLOR PALETTE
if (color == "green") {
colo <- c(rgb(0, 0, 0), rgb(green = (1:100)/100, red = 0, blue = 0))
}
else {
colo <- c(rgb(0, 0, 0), rgb((1:100)/100, green = 0, blue = 0))
}
### VISUALISATION
smatrixtmp <- smatrix
smatrixtmp[smatrixtmp < color.lim[1]] <- color.lim[1]
smatrixtmp[smatrixtmp > color.lim[2]] <- color.lim[2]
mat <- matrix(1:2, ncol = 2, nrow = 1, byrow = TRUE)
l <- layout(mat, widths = c(5, 1))
par(xaxt = "s")
par(yaxt = "s")
par(mar = c(4, 4, 5, 2))
image(1:dim(smatrix)[[2]], 1:dim(smatrix)[[1]], t(smatrixtmp),
col = colo, zlim = color.lim, xlab = xlab, ylab = ylab,
...)
colorbar.mxy.abs(color.lim = color.lim, color = color, ylablim = FALSE)
par(opo)
}
###########################################################################
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.