Description Usage Arguments Value Author(s) References Examples
View source: R/all_functions_v8.R
Calculate the statistics from X/Y positional data obtained from cell tracks
1  | MigrationStats(tracks, interval_time, pixel_micron)
 | 
tracks | 
 data.frame with cell tracks information  | 
interval_time | 
 integer, time interval between two successive frames were taken  | 
pixel_micron | 
 integer, image resolution, i.e. number of pixels per micron  | 
list of stats calculated for the cell tracks. Info include variables of speed, distance, euclidean displacement, persistence, angular displacement, yFMI, xFMI, y-displacement, x-displacement and frames
Damiano Fantini, damiano.fantini@gmail.com
https://www.data-pulse.com/dev_site/cellmigration/ https://www.mathworks.com/matlabcentral/fileexchange/60349-fasttracks
1 2 3 4 5  | x0 <- cbind(c(30, 35, 1, 5, 6, 7, 50, 55, 56, 58),
            c(29, 37, 2, 7, 4, 9, 40, 50, 59, 49),
            c( 1,  2, 1, 2, 3, 4,  1,  2,  3,  4),
            c( 1,  1, 2, 2, 2, 2,  3,  3,  3,  3))
cellmigRation:::MigrationStats(x0, 10, 10)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.