Jen Maresh
2009-Sep-30 02:39 UTC
[R] R package for visualizing/analyzing accelerometry data?
Hello All - Any recommendations or suggestions for neat ways to visualize data taken from a 3-axis accelerometer? My study species is aquatic, so I would be interested in movement in the 3 dimensions in addition to being able to incorporate the time series as well. Is there a package in R that might be useful for this? Thank you in advance, Jen ~~~~~~~~~~~~~~~~~~~~~ Jennifer Maresh, PhD Student Center for Ocean Health, Long Marine Lab 100 Shaffer Rd. University of California Santa Cruz, CA 95060 maresh at biology.ucsc.edu
David Winsemius
2009-Sep-30 03:04 UTC
[R] R package for visualizing/analyzing accelerometry data?
rgl should let you draw segments (maybe even arrows) in pseudo 3D between sequential locations. I wonder if you could trick persp into doing it as well? scatterplot3d would be another avenue to explore. On Sep 29, 2009, at 10:39 PM, Jen Maresh wrote:> Hello All - > > Any recommendations or suggestions for neat ways to visualize data > taken from a 3-axis accelerometer? My study species is aquatic, so I > would be interested in movement in the 3 dimensions in addition to > being able to incorporate the time series as well. Is there a package > in R that might be useful for this? > > Thank you in advance, > JenDavid Winsemius, MD Heritage Laboratories West Hartford, CT
Duncan Murdoch
2009-Sep-30 12:23 UTC
[R] R package for visualizing/analyzing accelerometry data?
On 9/29/2009 10:39 PM, Jen Maresh wrote:> Hello All - > > Any recommendations or suggestions for neat ways to visualize data > taken from a 3-axis accelerometer? My study species is aquatic, so I > would be interested in movement in the 3 dimensions in addition to > being able to incorporate the time series as well. Is there a package > in R that might be useful for this?As David mentioned, rgl can draw 3D figures, but the problem of visualizing a 3D path in an informative way is not easy. The new cylinder3d function in rgl might give paths that are easier to decode visually than line segments would be; it also offers the possibility of encoding orientation in the shape of the cylinder. I'd be interested in hearing how this goes. Duncan Murdoch