exampleFormatted2 | R Documentation |
Sample of formatted BirdNET output.
data(exampleFormatted2)
An object of class data.frame
containing 17 columns.
The exampleFormatted2 object can be used to experiment with birdnet_* functions, such as birdnet_gather
# Load the dataset
data(exampleFormatted2)
# View structure
str(exampleFormatted2, max.level = 1)
# Create a BirdNET results directory for this example
dir.create('example-results-directory')
# Write examples of formatted BirdNET outputs to example results directory
# to mimic output format of birdnet_format
write.table(x = exampleFormatted2,
file = 'example-results-directory/Rivendell_20210623_114602.BirdNET_formatted_results.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.