The function generates a histogram of species diel activity in 1-hour intervals.
activityHistogram(
recordTable,
species,
allSpecies = FALSE,
speciesCol = "Species",
recordDateTimeCol = "DateTimeOriginal",
recordDateTimeFormat = "ymd HMS",
plotR = TRUE,
writePNG = FALSE,
plotDirectory,
createDir = FALSE,
pngMaxPix = 1000,
...
)
It returns invisibly a vector of species record date and time in
POSIXlt
format. If allSpecies == TRUE
, all species' vectors
are returned in an invisible named list.
data.frame. the record table created by
recordTable
Name of the single species for which to create a histogram of activity
logical. Create plots for all species in speciesCol
of recordTable
? Overrides argument species
character. name of the column specifying species names in
recordTable
character. name of the column specifying date and
time in recordTable
character. format of column
recordDateTimeCol
in recordTable
logical. Show plots in R graphics device?
logical. Create pngs of the plots?
character. Directory in which to create png plots if
writePNG = TRUE
logical. Create plotDirectory
?
integer. image size of png (pixels along x-axis)
additional arguments to be passed to function
hist
Juergen Niedballa
Activity is calculated from the time of day of records. The date is ignored.
recordDateTimeFormat
defaults to the "YYYY-MM-DD HH:MM:SS"
convention, e.g. "2014-09-30 22:59:59". recordDateTimeFormat
can be
interpreted either by base-R via strptime
or in
lubridate via parse_date_time
(argument
"orders"). lubridate will be used if there are no "%" characters in
recordDateTimeFormat
.
For "YYYY-MM-DD HH:MM:SS", recordDateTimeFormat
would be either
"%Y-%m-%d %H:%M:%S" or "ymd HMS". For details on how to specify date
and time formats in R see strptime
or
parse_date_time
.
activityDensity
, activityRadial
,
activityOverlap
# load record table
data(recordTableSample)
# generate activity histogram
species4activity <- "VTA" # = Viverra tangalunga, Malay Civet
activityHistogram (recordTable = recordTableSample,
species = species4activity,
allSpecies = FALSE)
Run the code above in your browser using DataLab