exampleBirdNET1 | R Documentation |
Sample of raw BirdNET output.
data(exampleBirdNET1)
An object of class data.frame
containing 14 columns.
The exampleBirdNET1 object can be used to experiment with birdnet_* functions, such as birdnet_format
# Load the dataset
data(exampleBirdNET1)
# View structure
str(exampleBirdNET1, 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 = exampleBirdNET1,
file = 'example-results-directory/Rivendell_20210623_113602.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.