Nothing
plot.relax.cem <- function(...) relax.plot(...)
relax.plot <- function(tab, group="1", max.terms=50, perc=.5, unique=FALSE, colors=TRUE){
#if(class(tab) != "relax.cem")
if(!inherits(tab,"relax.cem"))
stop("tab must be of class `relax.cem'")
oldpar <- par(no.readonly = TRUE)
on.exit(par(oldpar))
par(xpd=TRUE)
par(mar = c(10, 5, 4, 4) + 0.1)
g <- sprintf("G%s",group)
pg <- sprintf("PercG%s",group)
n <- dim(tab[[g]])[1]
idx.start <- which(tab[[g]]$Relaxed=="<start>")
n.start <- tab[[g]][[g]][idx.start]
p.start <- tab[[g]][[pg]][idx.start]
title <- sprintf("Pre-relax: %d matched (%.1f %%)", n.start, p.start)
idx <- 1:n
if(unique){
idx <- match(unique(tab[[g]][[pg]]), tab[[g]][[pg]])
idx1 <- match(p.start, tab[[g]][[pg]][idx])
idx[ idx1 ] <- idx.start
}
G1 <- tab[[g]][[g]][idx]
PercG1 <- tab[[g]][[pg]][idx]
Relaxed <- tab[[g]]$Relaxed[idx]
L1 <- tab[[g]]$L1[idx]
var <- tab[[g]]$var[idx]
var <- as.integer(var)
n.var <- max(unique(var))
mycol <- rep(c("black","blue", "green", "yellow", "orange","red","violet", "salmon", "purple","brown","tan4"),10)
var <- mycol[var] #rainbow(n.var, start=0.2, end=0.8)[var]
if(!colors)
var <- rep("black", length(var))
n <- length(idx)
p.terms <- which(PercG1>=perc*100)
max.terms <- min(length(p.terms), max.terms)
max <- min(max.terms, n)
labx <- Relaxed
# minp <- 0.95*min(PercG1[(n-max+1):n])
# maxp <- 1.05*max(PercG1[(n-max+1):n])
rg <- range(PercG1[(n - max + 1):n],na.rm=TRUE)
df <- diff(rg)
minp <- rg[1]-0.05*df
maxp <- rg[2]+0.05*df
plot(0:(max+1), c(minp,PercG1[(n-max+1):n],maxp), ylog=TRUE, type="n",axes=F,xlab="",ylab="", main=title)
points(1:max, PercG1[(n-max+1):n],type="b", pch=16, col=var[(n-max+1):n])
axis(1, 1:max, padj=0.5,las=3,labx[(n-max+1):n], xpd = TRUE, cex.axis=0.75)
y1 <- sort(unique(PercG1[(n-max+1):n]))
y2 <- sort(unique(G1[(n-max+1):n]))
axis(2, y1, labels=F)
text(rep(par("usr")[1], length(y1)), y1, labels=sprintf("%.1f",y1), srt=0, adj=2,cex=0.75)
axis(4, y1, labels=F)
text(rep(par("usr")[2], length(y1)), y1, labels=sprintf("%3.0f",y2), srt=0, adj=-1,cex=0.75)
# text(1:max, par("usr")[3] - 1, srt = 45, adj = 1,
# labels = labx[(n-max+1):n], xpd = TRUE, cex=0.75, col=var[(n-max+1):n])
if(!any(is.na(L1)))
text(1:max, PercG1[(n-max+1):n], adj=-0.35,
labels= sprintf("%3.2f", L1[(n-max+1):n]), srt=-45, cex=0.75)
mtext("number of matched", 4, line=3)
mtext("% matched",2,line=4)
box()
}
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.