plot3DAllTracks {cellmigRation} | R Documentation |
Plotting the trajectory data of all cells in 3D.
plot3DAllTracks(object, VS = 3, size = 2, interactive = TRUE)
object |
|
VS |
A numeric value of the vertical separator between cells. |
size |
A numeric value of the point's size. |
interactive |
logical, shall the 3D plot be generated in a interactive fashion |
The 3D visualization shows centered trajectories where the starting point of each track is located at the origin of the coordinate system (X=0,Y=0).
A 3D rose-plot showing the tracks of all cells.
This function requires the rgl
package to be installed on your
system.
Salim Ghannoum salim.ghannoum@medisin.uio.no
https://www.data-pulse.com/dev_site/cellmigration/
if (Sys.info()[["sysname"]] != "Darwin") { # interactive shall be set to TRUE (default) rmTD <- get(data(preProcCellMig)) plot3DAllTracks(rmTD, VS=3, size=2, interactive = FALSE) }