Skip to content
Prev 217292 / 398500 Next

Problems getting symbols() to show table data

Try this:

library(gplots)
URL <- "http://n4.nabble.com/file/n1890724/test-data.txt"
DF <- read.table(URL)

balloonplot(colnames(DF)[col(DF)], rownames(DF)[row(DF)],
	abs(as.matrix(DF)),
	dotcolor = c("lightblue", "red")[(c(matrix_data) < 0) + 1],
	show.margins = FALSE, cum.margins = FALSE,
	xlab = "", ylab = "", label = TRUE, label.lines = FALSE,
	colsrt = 90, sorted = FALSE, rowmar = 3, colmar = 2.5)
On Thu, Apr 15, 2010 at 9:23 AM, Guy Green <guygreen at netvigator.com> wrote: