Undertaking a data visualization module, I'm trying to use R (course requirement) to visualize 3D trajectories of autonomous agents. I have xyz data extracted from unity, looking to produce an interactive visualization.
With scatterplot3D() from the plot3D library I can use type = "L" and get a line connecting the points, but I loose the interactivity and "nice" looking car/rgl scatterplot3d()
similar to:
Make a 3D rendered plot of time-series
but with interactive, line connected dots!
this is the view I have... not enough rep for images yet :(
scatter3D(fiveBoids.x, fiveBoids.y, fiveBoids.z, type = "L")
Is there anything like type = "L" in the rgl/car scatterplot3d() function? Is there a more suitable library I should be using?