radial.plot
from package minDeltaTime
in recordTable
.activityRadial(recordTable,
species,
allSpecies = FALSE,
speciesCol = "Species",
recordDateTimeCol = "DateTimeOriginal",
recordDateTimeFormat = "%Y-%m-%d %H:%M:%S",
byNumber = FALSE,
plotR = TRUE,
writePNG = FALSE,
plotDirectory,
createDir = FALSE,
pngMaxPix = 1000,
...
)
recordTable
speciesCol
of recordTable
? Overrides argument species
recordTable
recordTable
recordDateTimeCol
in recordTable
writePNG = TRUE
plotDirectory
?radial.plot
allSpecies == TRUE
, all species' data frames are returned in an invisible named list.radial.plot
was adjusted to show a clockwise 24-hour clock face. It is recommended to set argument lwd
to a value >= 2. You may also wish to add argument rp.type="p"
to show a polygon instead of bars.activityDensity
, activityHistogram
, activityOverlap
# load record table
data(recordTableSample)
species4activity <- "VTA" # = Viverra tangalunga, Malay Civet
activityRadial(recordTable = recordTableSample,
species = species4activity,
allSpecies = FALSE,
speciesCol = "Species",
recordDateTimeCol = "DateTimeOriginal",
plotR = TRUE,
writePNG = FALSE,
lwd = 5
)
# with polygon
activityRadial(recordTable = recordTableSample,
species = species4activity,
allSpecies = FALSE,
speciesCol = "Species",
recordDateTimeCol = "DateTimeOriginal",
plotR = TRUE,
writePNG = FALSE,
lwd = 5,
rp.type = "p"
)
Run the code above in your browser using DataLab