get_effort | R Documentation |
Gets the effort (deployment duration) per deployment.
get_effort(
package = NULL,
...,
unit = "hour",
datapkg = lifecycle::deprecated()
)
package |
Camera trap data package object, as returned by
|
... |
filter predicates |
unit |
Time unit to use while returning deployment effort (duration). One of:
|
datapkg |
Deprecated.
Use |
A tibble data frame with following columns:
deploymentID
: Deployment unique identifier.
effort
: Effort expressed in the unit passed by parameter unit
.
unit
: The unit used to express the effort.
One of the values available for parameter unit
.
effort_duration
: A duration object (duration is a class from lubridate
package).
Other exploration functions:
get_cam_op()
,
get_custom_effort()
,
get_n_individuals()
,
get_n_obs()
,
get_n_species()
,
get_rai()
,
get_rai_individuals()
,
get_record_table()
,
get_scientific_name()
,
get_species()
# Efforts expressed in hours
get_effort(mica)
# Effort expressed as days
get_effort(mica, unit = "day")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.