# \donttest{
# Using a raw query string
M <- pmCollect(
query = "bibliometric*[Title/Abstract] AND english[LA] AND 2020:2024[DP]",
limit = 50
)
# Using the query builder parameters
M <- pmCollect(
terms = "bibliometric*",
language = "english",
pub_type = "Journal Article",
date_range = c("2020", "2024"),
limit = 50
)
# With citation enrichment (slower, requires extra API calls)
M <- pmCollect(
terms = "bibliometric*",
date_range = c("2023", "2024"),
limit = 10,
enrich = TRUE
)
# }
Run the code above in your browser using DataLab