Re: [R] Alternatives to image(...) and filled.contour(...) for 2-D filled Plots

2010-11-22 Thread Ista Zahn
Hi Jason, You do not say what you want the alternative to do, so its hard to know if this will be helpful. But one alternative is dat - as.data.frame(ak.fan) dat - melt(dat, id.vars=c(x, y)) p - ggplot(dat, aes(x=x, y=variable)) p + geom_tile(aes(fill=value)) -Ista On Sun, Nov 21, 2010 at 9:04

[R] Alternatives to image(...) and filled.contour(...) for 2-D filled Plots

2010-11-21 Thread Jason Rupert
By any chance are there any alternatives to image(...) and filled.contour(...) I used Rseek to search for that very topic, but didn't turn over any leads...