At the moment i am writing an regression algorithm in r-project which tries to "capture" points inside boxes. The algorithm tries to keep the boxes as small as possible, so usually the edges/corners of the boxes go through points, which determines the size of the box.
Problem: I need a graphical output of the boxes in R. In 2D it is easy to draw boxes with "segments" which draws a line between two points. So, with 4 segments i can draw a box.
plot(x,y,type="p")
segments(x1,y1,x2,y2)
I then tried both the "scatterplot3d" and the "plot3d" package for 3D plotting. In 3D the "segments" command is not working, as there is no additional z-component. I was surprised that appearently (to me) there is no adequate replacement in 3d for "segments".
Is there an easy way to draw boxes / lines between two points when plotting in three dimensions ?
Thanks for help !
plot3dpackage? It's not on CRAN: do you mean theplot3dfunction in therglpackage? – Ben Bolker Nov 21 '12 at 15:04