I'm plotting a 3D histogram in R using the method from figure 6.15 here.
I've set scale = list(arrow=F), so that I have tick marks instead of arrows on each axis.
The plot looks fine, but I want to change the axis tick labels. My x-axis goes from 1-26, my y from 1-24, and my Z from 0-8E-6. Ideally I'd like a single label at each of the discrete x and y values, and then at some reasonable interval on the z axis.
I've tried using the scale option 'tick.number', but it seems to only take one number, or use the first in a list, so if I set it to 26 I get excess tick marks on the y axis, and the z axis looks like rubbish.
I see there is an 'at' and 'labels' options in scales, much like for 2D plots, but I can't seem to get it to work. The docs indicate it should be a list of vectors with locations and labels for each panel, so I tried:
at = list(c(1:26), c(1:24), c(2*10^-6, 4*10^-6, 8*10^-6))
but it complains:
(list) object cannot be coerces to type 'double'
I presume if I figure out how to use 'at' then 'label' should become clear.
EDIT:
Here is sample code:
library(latticeExtra)
Cg = 1:25
Cr = 1:25
freqs = rnorm(25, .5, .1)
cloud(freqs~Cg*Cr, xlim=c(27,-1), ylim=c(25,-1), panel.3d.cloud=panel.3dbars, par.settings=list(box.3d = list(col="transparent")), col.facet="grey", scales=list(arrows=F))
My data has different lengths X and Y axes, and not just the diagonal is filled, but it shows the axis problem.
