if (FALSE) {
# Empty search returns all available datasets
search_data()
# "text" searches titles, descriptions, and abstracts
search_data(text = "Lake")
# "taxa" searches taxonomic ranks for a match
search_data(taxa = "Plantae")
# "num_years" searches the number of years sampled
search_data(num_years = c(10, 20))
# Use any combination of search fields to find the data you're looking for
search_data(
text = c("Lake", "River"),
taxa = c("Plantae", "Animalia"),
num_taxa = c(0, 10),
num_years = c(10, 100),
sd_years = c(.01, 100),
area = c(47.1, -86.7, 42.5, -92),
boolean = "OR")
}
Run the code above in your browser using DataLab