skills/43-wentorai-research-plugins/skills/literature/metadata/bibliometrix-guide/SKILL.md
Perform science mapping and bibliometric analysis with R bibliometrix
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research bibliometrix-guideInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Bibliometrix is an R package for comprehensive science mapping and bibliometric analysis. It imports data from Scopus, Web of Science, PubMed, and other databases, then performs co-citation analysis, keyword co-occurrence mapping, collaboration networks, thematic evolution tracking, and more. Includes Biblioshiny — a Shiny-based web interface for no-code analysis.
install.packages("bibliometrix")
# Or development version
devtools::install_github("massimoaria/bibliometrix")
library(bibliometrix)
# From Scopus CSV export
M <- convert2df("scopus_export.csv", dbsource = "scopus", format = "csv")
# From Web of Science
M <- convert2df("wos_export.txt", dbsource = "wos", format = "plaintext")
# From PubMed
M <- convert2df("pubmed_export.txt", dbsource = "pubmed", format = "pubmed")
# From multiple files
file_list <- c("data1.csv", "data2.csv")
M <- convert2df(file_list, dbsource = "scopus", format = "csv")
# Basic bibliometric summary
results <- biblioAnalysis(M)
summary(results, k = 10) # Top 10 in each category
# Key metrics produced:
# - Publication trends over time
# - Most productive authors
# - Most cited papers
# - Top journals/sources
# - Country/affiliation rankings
# - Keyword frequency
# Most cited documents
CR <- citations(M, field = "article", sep = ";")
head(CR$Cited, 20)
# Most cited first authors
CR_auth <- citations(M, field = "author", sep = ";")
# Local citations (within the dataset)
LC <- localCitations(M)
head(LC$Papers, 10)
# Co-citation network
NetMatrix <- biblioNetwork(M, analysis = "co-citation",
network = "references", sep = ";")
net <- networkPlot(NetMatrix, n = 30, type = "fruchterman",
Title = "Co-citation Network")
# Author collaboration network
NetMatrix <- biblioNetwork(M, analysis = "collaboration",
network = "authors", sep = ";")
net <- networkPlot(NetMatrix, n = 50, type = "kamada",
Title = "Collaboration Network")
# Keyword co-occurrence
NetMatrix <- biblioNetwork(M, analysis = "co-occurrences",
network = "keywords", sep = ";")
net <- networkPlot(NetMatrix, n = 40, type = "fruchterman",
Title = "Keyword Co-occurrence")
# Thematic map (strategic diagram)
Map <- thematicMap(M, field = "DE", n = 250, minfreq = 5)
plot(Map$map)
# Quadrants:
# Motor themes (high centrality, high density)
# Basic themes (high centrality, low density)
# Niche themes (low centrality, high density)
# Emerging/declining themes (low centrality, low density)
# Thematic evolution over time periods
nexus <- thematicEvolution(M,
field = "DE",
years = c(2015, 2019, 2023),
n = 100, minFreq = 3)
plotThematicEvolution(nexus$Nodes, nexus$Edges)
# Launch interactive web dashboard
biblioshiny()
# Opens browser with GUI for:
# - Data import from multiple sources
# - Descriptive analysis
# - Network visualization
# - Thematic mapping
# - All plots exportable
| Source | Format | Import function |
|--------|--------|----------------|
| Scopus | CSV/BibTeX | convert2df(..., dbsource="scopus") |
| Web of Science | Plain text/BibTeX | convert2df(..., dbsource="wos") |
| PubMed | PubMed format | convert2df(..., dbsource="pubmed") |
| Dimensions | CSV | convert2df(..., dbsource="dimensions") |
| Cochrane | Plain text | convert2df(..., dbsource="cochrane") |
| OpenAlex | JSON | Via API integration |
| Analysis | Function | Output |
|----------|----------|--------|
| Descriptive | biblioAnalysis() | Summary statistics |
| Co-citation | biblioNetwork(analysis="co-citation") | Citation clusters |
| Collaboration | biblioNetwork(analysis="collaboration") | Author networks |
| Co-occurrence | biblioNetwork(analysis="co-occurrences") | Keyword maps |
| Thematic map | thematicMap() | Strategic quadrant diagram |
| Trend analysis | fieldByYear() | Topic evolution |
| Country collab | metaTagExtraction() + biblioNetwork() | Geo collaboration |
development
Conduct rigorous thematic analysis (TA) of qualitative data following Braun and Clarke's (2006) six-phase framework. Use whenever the user mentions 'thematic analysis', 'TA', 'Braun and Clarke', 'qualitative coding', 'identifying themes', or asks for help analysing interviews, focus groups, open-ended survey responses, or transcripts to identify patterns. Also trigger for questions about inductive vs theoretical coding, semantic vs latent themes, essentialist vs constructionist epistemology, building a thematic map, or writing up a qualitative findings section. Covers all six phases, the four upfront analytic decisions, the 15-point quality checklist, and the five common pitfalls. Produces a Word document write-up and an annotated thematic map. Does NOT cover IPA, grounded theory, discourse analysis, conversation analysis, or narrative analysis — use a different method for those.
development
Guide users through writing a systematic literature review (SLR) following the PRISMA 2020 framework. Use this skill whenever the user mentions 'systematic review', 'systematic literature review', 'SLR', 'PRISMA', 'PRISMA 2020', 'PRISMA flow diagram', 'PRISMA checklist', or asks for help writing, structuring, or auditing a literature review that follows reporting guidelines. Also trigger when the user asks about inclusion/exclusion criteria for a review, search strategies for databases like Scopus/WoS/PubMed, study selection processes, risk of bias assessment, or narrative synthesis for a review paper. This skill covers the full PRISMA 2020 checklist (27 items), produces a Word document manuscript in strict journal article format, generates an annotated PRISMA flow diagram, and enforces APA 7th Edition referencing throughout. It does NOT cover meta-analysis or statistical pooling. By Chuah Kee Man.
testing
Performs placebo-in-time sensitivity analysis with hierarchical null model and optional Bayesian assurance. Use when checking model robustness, verifying lack of pre-intervention effects, or estimating study power.
data-ai
Fit, summarize, plot, and interpret a chosen CausalPy experiment. Use after the causal method has been selected, including when configuring PyMC/sklearn models and scale-aware custom priors.