search for: quant2plot

Displaying 1 result from an estimated 1 matches for "quant2plot".

2002 Nov 19
1
Another plot question
...AB #~~~~~~~~~~~~~~~~~~~~~ #example to post junk.mat <- matrix(rnorm(12800), 128, 100) xYears <- 0:(nrow(junk.mat)-1) yPeriod <- 1:ncol(junk.mat) temp <- seq(10, ncol(junk.mat), 10) myLabels <- 2^(temp/10) cwtquants <- quantile(junk.mat, probs = c(0, 0.25, 0.5, 0.75, 0.95, 1)) quant2plot <- c(cwtquants[1], cwtquants[2], cwtquants[3], cwtquants[4], cwtquants[5], cwtquants[6]) filled.contour(xYears, yPeriod, junk.mat, levels = quant2plot, col=rainbow(5), plot.axes = {axis(1);...