Package 'tosr'

Title: Create the Tree of Science from WoS and Scopus
Description: The goal of 'tosr' is to create the Tree of Science from Web of Science (WoS) and Scopus data. It can read files from both sources at the same time. More information can be found in Valencia-Hernández (2020) <https://revistas.unal.edu.co/index.php/ingeinv/article/view/77718>.
Authors: Sebastian Robledo [aut, cre] , Martha Zuluaga [aut] , Oscar Arbelaez Echeverry [aut] , Luis Alexander Valencia Hernandez [aut], Centro de Bioinformática y Biología computacional de Colombia - BIOS [cph, fnd]
Maintainer: Sebastian Robledo <[email protected]>
License: MIT + file LICENSE
Version: 0.1.4
Built: 2025-03-12 04:32:14 UTC
Source: https://github.com/coreofscience/tosr

Help Index


A list with data to create ToS

Description

A list of three dataset that contain:

  1. Graph: this is a citation network build with the references

  2. df: A tibble with the main information of our initial dataset with some more ids

  3. nodes: A tibble with the complete information of each node from graph dataset (1).

Usage

my_tosr_load

Format

A list with two datasets from a search in Scopus and Web of Knowledge


tosR process

Description

This function load de scopus and web of science files and generate the graph (relations betwen the cited references), the bibliometrix dataframe object, the tree of science for the subfields, the tree of science for all the cited references,

Usage

tosR(...)

Arguments

...

Names of scopus and web of science files

Value

list with graph, data frame of citations, subfields and Tree of science

Author(s)

Sebastian Robledo

Examples

## Not run: 
my_tosr <- tosR("co-citation_209.txt",
               "co-citation_380.bib")

## End(Not run)

Load Web of Science and Scopus files

Description

Loads files from Web of Science (txt) and from Scopus (bib) to create a citation graph

Usage

tosr_load(...)

Arguments

...

Web of Science or Scopus files

Value

List with the following fields: 'df','g','original_df' and 'extensions'. 'df': bibliometrix dataframe. 'g' : Graph from the cited references. 'nodes': dataframe with the nodes atributes of the graph, 'original_df': dataframe from the original data, and 'extensions' : Type of files (.bib or .txt) loaded.

Author(s)

Sebastian Robledo

Examples

## Not run: 
my_tosr_load <- tosr_load("co-citation_209.txt",
                          "co-citation_380.bib")

## End(Not run)

SAP algorithm for tree of science

Description

Compute tree of science using SAP algorithm. see: https://revistas.unal.edu.co/index.php/ingeinv/article/view/77718/0

Arguments

graph

A graph object with bibliometrix data obtained from function tosr_load

df

Bibliometrix data frame obtained from function tosr_load

nodes

Dataframe with nodes atributes obtained from function tosr_load

Value

Dataframe with tree of science

Author(s)

Sebastian Robledo

Examples

## Not run: 
my_tos <- tosSAP(my_tos_load$graph, my_tos_load$df, my_tos_load$nodes)

## End(Not run)