Displaying 2 results from an estimated 2 matches for "yperiod".
Did you mean:
period
2002 Nov 19
3
filled.contour - plot.axes
...lp? I
imagine that one uses the plot.axes argument but I'm having trouble
figuring out how to do it. The matrix is already a log scale so the
ticks and numbers are evenly spaced by 10.
Thanks in advance, Andy
Example:
junk.mat <- matrix(rnorm(12800), 128, 100)
xYears <- 1:nrow(junk.mat)
yPeriod <- 1:ncol(junk.mat)
filled.contour(xYears,
yPeriod,
junk.mat,
color = terrain.colors)
#? plot.axes = { axis(2, seq(??))}
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http:/...
2002 Nov 19
1
Another plot question
...the 95%
should look the same on the key. They are labeled and ticked right. Is
there a way to space them correctly?
Thank you all for being an outstanding user community,
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,...