Nothing
addTableToPlot = function(plotObj, tableDF, meltVar, clrs){
## Initialize variables to prevent "no visible binding for global
## variable" NOTE by R CMD check:
variable = condition = value <- NULL
## Adds a table of melting curve parameters to an existing ggplot object
naReplacement = -1e6
tableDF[is.na(tableDF)] = naReplacement
tableDF_m = melt(tableDF, id=meltVar)
levels(tableDF_m$condition) <- levels(tableDF$condition)
tableDF_m = rbind( tableDF_m, data.frame(condition=rep(' ', length(unique(tableDF_m$variable))),
variable=unique(tableDF_m$variable),
value=unique(tableDF_m$variable)))
tableDF_m = rbind( tableDF_m, data.frame(condition=unique(tableDF_m$condition),
variable=rep(' ', length(unique(tableDF_m$condition))),
value=unique(tableDF_m$condition)))
tableDF_m[tableDF_m == naReplacement] = '-'
assign("tableDF_m", tableDF_m, envir=globalenv())
data_table <- ggplot(tableDF_m, aes(x=factor(variable,
levels=c(' ', (setdiff(unique(variable) , ' ')))),
y=factor(condition, levels=rev(c(' ', setdiff(levels(condition), ' ')))),
label = format(value, nsmall = 1),
colour=condition)) +
geom_text(size = 5, vjust=1.3, fontface='bold') +
theme_bw() +
theme(axis.title.x = element_text(size = 11, vjust = 1), legend.position = "none",
panel.grid.major.x = element_blank(),
panel.grid.minor = element_blank(),
panel.border = element_blank(),
axis.text.x = element_blank(),
axis.ticks = element_blank(), axis.text.y = element_blank()) +
xlab(NULL) +
ylab(NULL) +
scale_color_manual(values = c(as.character(clrs), 'black'))
tableHeight = 1.3*(nrow(tableDF)+(2/nrow(tableDF)))
plotHeight = 22 - tableHeight
a = arrangeGrob(plotObj, data_table, nrow = 2, heights = unit(c(plotHeight,tableHeight), 'cm' ) )
# a = arrangeGrob(plotObj, data_table, nrow = 2, heights = unit(c(plotHeight,tableHeight), 'npc' ) )
# a = arrangeGrob(plotObj, data_table, nrow = 2)
return(a)
}
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.