Skip to content

How to identify top 10 high citation papers in Alzheimer research filed?  #244

@AR-Shicheng

Description

@AR-Shicheng

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

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")])

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions