r - How to remove ticktypes at prespbox -
library(plot3d) trying construct 3d-plot grid lines using function prespbox , adding additional plot of figure based on data using surf3d-function.
this code:
library(plot3d)
# added comment
perspbox (x = seq(0.05, 0.5, length.out = nrow(m$x)), y = seq(0.05, 0.5, length.out = ncol(m$y)), z, bty = "u", col.axis = "black", col.panel = "white", lwd.panel = 1, col.grid = "grey", lwd.grid = 1, las=1, phi = 40, theta = 40, col = null,ps=30, nticks=4, ticktype="detailed", xlab="\n\n h1", ylab="\n\n h2", zlab="\n\n fund", colkey = true,cex.axis=0.5, plot = true) surf3d(m$x, m$y, z, colvar = z, colkey = true,add=true)
my problem is, tick lines @ axis long.
do have idea, how rid of ticklines? want keep axis labels, remove tick lines. tried tck-option, seems not have effect here.
thanks lot in advance.
Comments
Post a Comment