Thank you so much for the great contribution to the community to develop such fantastic package. I have a use-case, but seem the code is not working, could you please help me to check what is the best solution?
library(rcrossref)
# Search for Alzheimer's papers published in 2024
alz_search <- cr_works(
query = "Alzheimer",
filter = list(from_pub_date = "2024-01-01", until_pub_date = "2024-12-31"),
limit = 100
)
# Extract data
papers <- alz_search$data
# Sort by citation count (if available)
papers <- papers[order(-as.numeric(papers$references_count)), ]
# Top 10 papers
top10 <- head(papers, 10)
# Print
print(top10[, c("title", "author", "references_count")])
Dear rcrossref team,
Thank you so much for the great contribution to the community to develop such fantastic package. I have a use-case, but seem the code is not working, could you please help me to check what is the best solution?
Thanks,
Shicheng