if (FALSE) { # interactive()
# \donttest{
# Simple search with a keyword
df1 <- search_scielo("salud ambiental")
# Limit number of results to 5
df2 <- search_scielo("salud ambiental", n_max = 5)
# Filter by SciELO collection (country name or code)
df3 <- search_scielo("salud ambiental", collections = "Ecuador")
df4 <- search_scielo("salud ambiental", collections = "cri") # Costa Rica by ISO code
# Filter by article language
df5 <- search_scielo("salud ambiental", languages = "es")
# Filter by a specific journal
df6 <- search_scielo("salud ambiental", journals = "Revista Ambiente & Agua")
# Filter by subject category
df7 <- search_scielo("salud ambiental", categories = "environmental sciences")
# Filter by year range
df8 <- search_scielo("salud ambiental", year_start = 2015, year_end = 2020)
# }
}
Run the code above in your browser using DataLab