Bibliometrix

Why we use this tools?
Bibliometrix is a powerful tool that can be used to answer a wide variety of research questions, such as:
  • What are the most cited papers in a particular field?
  • Who are the most influential authors in a particular field?
  • How has the research landscape in a particular field changed over time?
  • What are the most important research topics in a particular field?
  • How are different research topics connected?
  • How does research collaboration occur in a particular field?
Types of Interface
There are two types of interface of the bibliometrix:-
  • Command-line interface
    • User can type the command for performing the bibliometric analysis
    • Users to have some knowledge of R programming.
    • More control over the analysis
  • Graphical-user Interface (biblioshiny)
    • User can perform bibliometric analysis by clicking of the button on the interface
    • Any body can perform the analysis without having the knowledge of R programming
    • Easier to share results
What is bibliometrix?

It is an open-source quantitative research package tool for scientometric and bibliometric analysis of scientific publications and their citations to find the trends and patterns of scientific development over time. Its is develop by Massimo Aria and Corrado Cuccurullo.
This tool is built on R, a statistical computing and graphics programming language. It can collect, preprocess, analyse, and visualise the data downloaded from various bibliographical databases, such as

It is a valuable tool for researchers who want to explore the scientific literature on a specific topic, identify the main trends and patterns, evaluate the performance and impact of authors, journals and institutions, and discover new research opportunities and collaborations.

Bibliometrix is a command-line tool that provides a broader range of features but requires some programming skills and command knowledge. Biblioshiny is a more user-friendly interface based on the bibliometrix package, making it possible to perform bibliometric analysis without any programming knowledge.
Methods of analysis
  • Co-citation analysis: This method identifies clusters of highly cited documents and can be used to identify emerging research areas and track the evolution of a field over time.
  • Bibliographic coupling analysis: This method identifies pairs of documents that share a large number of common references and can be used to identify related research topics and collaboration networks.
  • Co-authorship analysis: This method identifies pairs of authors who have co-authored documents and can be used to identify collaboration networks and emerging research groups.
  • Co-word analysis: This method identifies pairs of words that frequently occur together in documents and can be used to identify conceptual structures and emerging research topics.
In addition to these basic analyses, bibliometrix also provides functions for performing more advanced analyses, such as:
  • Network analysis: This method can be used to analyze bibliometric networks to identify the most important nodes, clusters of nodes, and relationships between nodes.
  • Topic modeling: This method can be used to identify the main topics of a corpus of documents.
  • Data mining: This method can be used to extract patterns from bibliometric data.

Bibliometrix also provides a variety of functions for visualizing bibliometric data. For example, it can be used to create:
  • Co-citation maps: These maps show the relationships between highly cited documents.
  • Bibliographic coupling maps: These maps show the relationships between documents that share a large number of common references.
  • Co-authorship maps: These maps show the relationships between authors who have co-authored documents.
  • Co-word maps: These maps show the relationships between words that frequently occur together in documents.
Who can use bibliometrix?
Bibliometrix can be used by researchers from a wide range of disciplines, including:
  • Scientists and academicians: Bibliometrix can be used to identify emerging research areas, track the evolution of a field over time, and identify potential research collaborators.
  • Librarians and information scientists: Bibliometrix can be used to identify the most influential publications in a field, assess the impact of research, and develop collections that meet the needs of users.
  • Funding agencies and policymakers: Bibliometrix can be used to identify research areas that are ripe for new investment, evaluate the performance of research institutions, and track the impact of research on society.
Advantage of Bibliometrix tool
  • It is free and open-source.
  • It can be used by researchers with no prior programming experience
  • Easily integrate with other R packages and functions for data manipulation and visualization
  • It has a web-based interface called biblioshinny that helps non-coder background people to use this tool.
  • It has a rich set of techniques and features that can cover the whole process of bibliometric analysis
Technique and features
Bibliometrix offers the following features and techniques:-
  • Data collection: It can process data file that are collected/downloaded from various sources such as Web of Science, Scopus, OpenAlex, Cochrane, Lens.org, Pubmed and Dimensions
  • Data preprocessing: It can clean and standardise the data and merge the split data by different criteria such as year, type source, etc..
  • Data analysis: It can perform various types of analysis, such as descriptive statistics, co-citation analysis, co-authorship analysis, bibliographic coupling analysis, co-word analysis, and cluster analysis. It can also calculate various bibliometric indicators, such as h-index, g-index, citations per paper, and impact factor. 
  • Data visualisation: It can generate various types of maps and graphs to show the trends and patterns in the data, such as co-citation clusters, co-word networks, timeline view, historiograph view, thematic map evolution, and reference publication year spectroscopy. It can also export the maps and graphs in different formats, such as PNG, PDF, HTML, and SVG.
Supported file format

Bibliometrix supports the following file formats:

  • Web of Science: Plain text (.txt), EndNote Desktop (.ciw), and BibTeX (.bib) 
  • Scopus: BibTeX (.bib) or CSV (.csv)
  • Pubmed: API call
  • Cochrane Library: Plain text (.txt) and CSV (.csv)
  • OpenAlex: BibTeX (.bib) and CSV (.csv) 
  • Dimensions: API call, CSV (.csv), and Excel (.xlsx)
  • Lens.org: CSV (.csv)
Science Mapping WorkFlow
Science Mapping WorkFlow of the bibliometrix
Type of the analysis function
In bibliometrix, the analysis function are categories into two type
  • Analytics and Graphs
    • Sources
    • Authors
    • Documents
  • Structures of Knowledge (K-structures)
    • Conceptual Structure
    • Intellectual Structure
    • Social Strucutre
Set_of_Functions
Step 1
Understand the requirement
The requirements to install bibliometrix software in Ubuntu and Windows are:
Ubuntu:
  • R (version 3.6.0 or higher)
  • RStudio (optional)
Windows:
  • R (version 3.6.0 or higher)
  • RStudio (optional)
Step 2
Update and upgrade system
sudo apt update
sudo apt -y upgrade
Step 3
Install R Programming Language
sudo apt -y install r-base
Step 4
Download and Install RStudio
Now visit the  RStudio downloads page to grab the latest release of RStudio for Debian based Linux distributions.
sudo wget https://download1.rstudio.org/electron/jammy/amd64/rstudio-2023.06.2-561-amd64.deb
sudo apt install -f ./rstudio-2023.06.2-561-amd64.deb
Step 5
Launch RStudio on Ubuntu
There are two ways to lunch the application
  • Go to applications search section and type:
rstudio
 
  • From terminal type:
rstudio
Step 6
Openssl and lunch RStudio
If on Ubuntu 22.04 you experience issues while trying to start the application. First install openssl 1.1 like below.
sudo wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1l-1ubuntu1.2_amd64.deb
sudo apt-get install ./libssl1.1_1.1.1l-1ubuntu1.2_amd64.deb

Once done launch Rstudio without sandbox
rstudio --no-sandbox
Step 7
installs bibliometrix package and dependencies
Open Rstudio, in the console window
and type this below command to install the bibliometrix package and dependicies:
library('bibliometrix')

if you want to start with graphical user interface then type the below command:
biblioshiny()
Step 1
Understand the requirement
The requirements to install bibliometrix software in Ubuntu and Windows are:
Ubuntu:
  • R (version 3.6.0 or higher)
  • RStudio (optional)
Windows:
  • R (version 3.6.0 or higher)
  • RStudio (optional)
Step 2
Install R Programming Language
Download and install the most recent version of R from (https://cran.r-project.org/)
Step 3
Install RStudio
Download and install the most recent version of Rstudio from (https://posit.co/download/rstudio-desktop/)
Step 7
installs bibliometrix package and dependencies
Open Rstudio, in the console window
and type this below command to install the bibliometrix package and dependicies:
library('bibliometrix')

if you want to start with graphical user interface then type the below command:
biblioshiny()
Step 1
Querying from Scopus
You can obtain the data from the databases mentioned below by querying/searching using various criteria, including topic, author, journal, title, citation, references, timespan, and more.

This example shows how to download data, by querying a term on Scopus in the search within "Article title, Abstract, Keywords" fields.

We choose the generic term “bibliometrics”. Write the keyword “bibliometrics” in the search field and select search within "Article title, Abstract, Keywords" fields. (see figure 1).




 
Step 2
Download the result result data
The search yielded 24849 results on 18 September 2023.

You can also refine the result if you want using options on the left side of the page (Refine search) (the type of range (timespan), source, subject category, etc.).

Step 3
Refine and export the result
After refining the result of the period 2012-2022, it yielded the result 16961 on 18 September 2023.

You can download data by checking the ‘All’ box and clicking on the link ‘Export’. Choose the file type “CSV” (see below figure)

Step 4
Export and download the result
After clicking on the file format (CSV) option, it will allow you to "What information do you want to export?" by checking the box then after checking to export option to download the result. The SCOPUS export tool creates an export file with the default name “scopus.csv”.