Learn R Programming

move (version 1.0)

timeSummary: time information from a track or track stack

Description

This function returns a summary about time related measurements of a Move or MoveStack object.

Usage

## S3 method for class '.MoveTrackSingle':
timeSummary(x, units="hours")
  ## S3 method for class '.MoveTrackStack':
timeSummary(x, units="hours")

Arguments

x
Move or MoveStack object
units
defines the output uni, 'secs', 'mins', 'hours', 'days', ...

Examples

Run this code
load(system.file("extdata", "move.RData", package="move"), .GlobalEnv)
  stack <- moveStack(list(leroy,leroy))
  
  time.lag(leroy)
  time.lag(stack)
  timeSummary(ricky) # summary of time measures of a Move object
  timeSummary(stack, units="hours") # summary of time measures of a MoveStack object

Run the code above in your browser using DataLab