The Bibliometrix R package is a comprehensive tool for quantitative research in scientometrics and bibliometrics. In addition, it features biblioshiny which is a R shiny web app that provides routines for importing bibliographic data from a multitude of popular databases for performing bibliometric analysis. This guide will walk you through the key steps to use this package effectively.
Before you can use R Studio, you need to install R itself. Below are the steps to install R:
Go to the R project website at https://cran.r-project.org/.
Choose the version that corresponds to your operating system (Windows, Mac, or Linux).
Follow the installation instructions for your chosen operating system.
After installing R, you should install R Studio, which is an integrated development environment (IDE) for R:
Go to the R Studio website at https://www.rstudio.com/.
Click on the "Download" button.
Under "Installers for Supported Platforms," choose the version that corresponds to your operating system.
Follow the installation instructions.
You can install the stable version of Bibliometrix from CRAN using the following command:
install.packages("bibliometrix")
Alternatively, you can install the development version from GitHub:
install.packages("devtools")
devtools::install_github("massimoaria/bibliometrix")
After installation, load the package with:
library('bibliometrix')
To launch the biblioshiny web app
library(bibliometrix)
biblioshiny()
# Load the bibliometrix package
library(bibliometrix)
# Import the .bib file
M <- convert2df("filepath.bib", dbsource = "scopus", format = "bibtex")
# Deduplicate the data
M <- duplicatedMatching(M, Field = "TI", exact = TRUE, tol = 0.95)
# Check your data
head(M)
# Save the deduplicated data as an R data file
save(M, file = "filepath.RData")