observations | R Documentation |
observations()
gets the observations from a Camera Trap Data Package
object.
observations<-()
is the assignment equivalent.
It should only be used within other functions, where the expected data structure can be guaranteed.
Metadata (x$taxonomic
) are updated to match the assigned observations.
observations(x)
observations(x) <- value
x |
Camera Trap Data Package object, as returned by |
value |
A data frame to assign as observations. |
A tibble::tibble()
data frame with observations.
Other accessor functions:
deployments()
,
events()
,
individuals()
,
locations()
,
media()
,
taxa()
x <- example_dataset()
# Get the observations
observations(x)
# Set observations (not recommended outside a function)
observations(x) <- head(observations(x), 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.