exampleBirdNET2 | R Documentation |
Sample of raw BirdNET output.
data(exampleBirdNET2)
An object of class data.frame
containing 14 columns.
The exampleBirdNET2 object can be used to experiment with birdnet_* functions, such as birdnet_format
# Load the dataset
data(exampleBirdNET2)
# View structure
str(exampleBirdNET2, max.level = 1)
# Create a BirdNET results directory for this example
dir.create('example-results-directory')
# Write examples of raw BirdNET txt outputs to example results directory to
# mimic BirdNET output format
write.table(
x = exampleBirdNET2,
file = 'example-results-directory/Rivendell_20210623_114602.BirdNET.results.r.csv',
row.names = FALSE, quote = FALSE, sep = ','
)
# Delete all temporary example files when finished
unlink(x = 'example-results-directory', recursive = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.