Preview

Here we show how to get the total counts per original paper:

library(dplyr)
# here we remove duplicates if there are any of the same titles of citing papers for each original paper and then get a count of the number of rows for each original paper (aka how many times it is cited)
citations %>%
  distinct(original_paper, cite_titles, .keep_all = TRUE) %>%
  count(original_paper)
## # A tibble: 2 × 2
##   original_paper                                                               n
##   <chr>                                                                    <int>
## 1 Open-source Tools for Training Resources–OTTR                                6
## 2 What's the best chatbot for me? Researchers put LLMs through their pace…     7

Data information

Column information:

  • original_paper shows papers that we have captured citation information about
  • cite_titles shows papers that cite the original paper
  • linkscolumn shows the link for the paper that cites the original paper (the cite_titles papers).
knitr::kable(citations)
original_paper cite_titles links
Open-source Tools for Training Resources–OTTR Data science pedagogical tools and practices: A systematic literature review https://link.springer.com/article/10.1007/s10639-023-12102-y
Open-source Tools for Training Resources–OTTR Diversifying the genomic data science research community https://genome.cshlp.org/content/32/7/1231.short
Open-source Tools for Training Resources–OTTR [HTML][HTML] Motivation, inclusivity, and realism should drive data science education https://pmc.ncbi.nlm.nih.gov/articles/PMC11101914/
Open-source Tools for Training Resources–OTTR [HTML][HTML] Ten simple rules for teaching an introduction to R https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1012018
Open-source Tools for Training Resources–OTTR Empowering Learning: Standalone, Browser-Only Courses for Seamless Education https://arxiv.org/abs/2311.06961
Open-source Tools for Training Resources–OTTR [PDF][PDF] VIRTUAL CLASSROOM LEARNING FACILITATOR: AN EFFECTIVE TEACHER-STUDENT RELATIONSHIP IN THE ONLINE ENVIRONMENT. https://www.researchgate.net/profile/Nicoleta-Mirea/publication/387033311_VIRTUAL_CLASSROOM_LEARNING_FACILITATOR_AN_EFFECTIVE_TEACHER-STUDENT_RELATIONSHIP_IN_THE_ONLINE_ENVIRONMENT/links/675d2932eea8d248be69d06f/VIRTUAL-CLASSROOM-LEARNING-FACILITATOR-AN-EFFECTIVE-TEACHER-STUDENT-RELATIONSHIP-IN-THE-ONLINE-ENVIRONMENT.pdf
What’s the best chatbot for me? Researchers put LLMs through their paces. “HOT” ChatGPT: The promise of ChatGPT in detecting and discriminating hateful, offensive, and toxic comments on social media https://dl.acm.org/doi/abs/10.1145/3643829
What’s the best chatbot for me? Researchers put LLMs through their paces. [HTML][HTML] Accelerating editorial processes in scientific journals: Leveraging AI for rapid manuscript review https://www.sciencedirect.com/science/article/pii/S2772906024003571
What’s the best chatbot for me? Researchers put LLMs through their paces. [HTML][HTML] Current evaluation and recommendations for the use of artificial intelligence tools in education https://www.degruyter.com/document/doi/10.1515/tjb-2023-0254/html
What’s the best chatbot for me? Researchers put LLMs through their paces. Evolution of generative AI for business decision-making: A case of ChatGPT https://publish.thescienceinsight.com/index.php/msbd/article/view/87
What’s the best chatbot for me? Researchers put LLMs through their paces. [HTML][HTML] Multiple criteria and statistical sentiment analysis on flooding https://www.nature.com/articles/s41598-024-81562-0
What’s the best chatbot for me? Researchers put LLMs through their paces. Tahap Pengetahuan Dan Tahap Kekerapan Penggunaan Aplikasi Dikuasakan/Dibantu Kecerdasan Buatan (Artificial Intelligence, AI) Dalam Kalangan Pelajar DIT & … http://journalstem.net/ojs/index.php/pkb/article/view/44
What’s the best chatbot for me? Researchers put LLMs through their paces. [PDF][PDF] Oral Oncology Reports https://www.researchgate.net/profile/Vini-Mehta/publication/380779402_Accelerating_Editorial_Processes_in_Scientific_Journals_Leveraging_AI_for_Rapid_Manuscript_Review/links/6651a712479366623a0e83d2/Accelerating-Editorial-Processes-in-Scientific-Journals-Leveraging-AI-for-Rapid-Manuscript-Review.pdf

Setting up Citations

  1. Go to: https://scholar.google.com/scholar
  2. Search for the paper you are looking for the citation count.
  3. Then click the Cited by ___ button below the title of the paper
  4. Copy and paste this in the _config_automation.yml file in the citation_papers section.
###### Citations ######
refresh-citations: yes
citation_papers: [
  "https://scholar.google.com/scholar?cites=6140457238337460780",
  "https://scholar.google.com/scholar?cites=15945159957067506879" ]
citation_googlesheet:

Customizing Citation Data

In order to customize the data you are downloading from Google Scholar you can modify the refresh-scripts/refresh-citations.R script in your repository.

You can take a look at the metricminer R package documentation for more details about the functions and what is possible.

If you have a metric need that is not currently fulfilled by metricminer or metricminer-dashboard we encourage you to file a GitHub issue with us and let us know about your new feature idea (or bug report).