Displaying 5 results from an estimated 5 matches for "bbox3d".
2011 Oct 07
1
axes3d/bbox3d - axis values not fixed
...39;,labels='test')
...puts in a custom character label 'test', but I loose the behavior/hiding.
Also, then how do I get the values for the z axis to populate with the
default values and auto-hide with the other two custom string axes
auto-hiding?
I'm pretty sure I need to use bbox3d(), but I'm not having any luck.
I'm new'ish to R and very new to the rgl package. Hopefully that makes
sense.
Thanks for your help!
ben
[[alternative HTML version deleted]]
2012 Jul 10
1
RGL 3D curvilinear shapes
...,3),each=10)))
plot3d(dat, type = "n", ylab = "", xlab = "", zlab = "", axes = F, ylim =
c(0,200))
lines3d(dat[1:10,])
lines3d(dat[11:20,])
lines3d(dat[21:30,])
axes3d(edge = c("x--", "y-+", "z--"), nticks = 5, ylim = c(0,200))
bbox3d(color = c("black", "white"), lit = F, back = "line")
Any ideas/tips on how to do this?
thanks in advance,
Patrick
--
View this message in context: http://r.789695.n4.nabble.com/RGL-3D-curvilinear-shapes-tp4636011.html
Sent from the R help mailing list archive at N...
2012 Sep 25
1
RGL plot : cex and zlim arguments do not work
Dear all,
I have a quiet simple problem (shared by a collegue) but no solution at
yet. The arguments I use in bbox3d or text3d do not have any effect on the
graph. I need to use 'cex' and 'zlim' but It does not work. Maybe my
problem could appear trivial but I have spent a lot of time on that.
If you have a solution, please let me know!
stephane
[[alternative HTML version deleted]]
2008 Nov 20
1
Math Expression in 3D Plots
...88698) {
delta.yrsed <- (beta.dist + 2*beta.dist2*dist)*delta.dist +
beta.dist2*delta.dist^2
return(delta.yrsed)
}
plot.deeffect <- function(scolor="blue") {
delta.dist <- dist <- seq(0, 16, .5)
delta.yrsed <- outer(dist, delta.dist, fn.delta.yrsed)
rgl.open()
bbox3d(xat=seq(0, 16, 2), yat=0:5, zat=seq(0, 16, 2), color="black")
title3d(main="Effect of Change in dist on yrsed",
pos=c(NA, 8, 0), color="black")
title3d(xlab="dist", pos=c(NA, 0, -3), color="black")
title3d(ylab="delta_yrsed"...
2006 Mar 11
2
Draw level lines on the surface of a bivariate function
Hello,
Is it possible to draw level lines on the surface of a bivariate function?
In the following example, to draw surface and levels lines for a
multivariate normal law,
I use persp, trans3d, contourLines and lines,
but if the lines are correctly drawn, some parts of them are, of
course, visible
even if they are drawn on a non visible "face".
Any suggestion to avoid this problem