Description Usage Arguments Value Examples
Identify valid tracks. Valid tracks are defined as tracks with a life time longer then a predefined value.
1  | validate_tracks(tracks, min_path_length = 19)
 | 
tracks | 
 data frame with track objects  | 
min_path_length | 
 minimum length of a valid track  | 
valid_observation_time
1 2 3 4 5 6 7 8 9 10  |  data <- tibble::tibble(
   Metadata_timePoint = c(1:5),
   Location_Center_X = c(1, 2, 3, 4, 5),
   Location_Center_Y = c(1, 1, 1, 1, 1),
   TrackObjects_Label = c(rep(1, 5))
 )
 data <- dplyr::group_by_(data,"TrackObjects_Label")
 tracks <- migrationminer::track(data,"TrackObjects_Label")
 min_path_length <- 5
 validate_tracks <-   migrationminer::validate_tracks(tracks, min_path_length)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.