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] |
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 |
A list of three dataset that contain:
Graph: this is a citation network build with the references
df: A tibble with the main information of our initial dataset with some more ids
nodes: A tibble with the complete information of each node from graph dataset (1).
my_tosr_load
my_tosr_load
A list with two datasets from a search in Scopus and Web of Knowledge
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,
tosR(...)
tosR(...)
... |
Names of scopus and web of science files |
list with graph, data frame of citations, subfields and Tree of science
Sebastian Robledo
## Not run: my_tosr <- tosR("co-citation_209.txt", "co-citation_380.bib") ## End(Not run)
## Not run: my_tosr <- tosR("co-citation_209.txt", "co-citation_380.bib") ## End(Not run)
Loads files from Web of Science (txt) and from Scopus (bib) to create a citation graph
tosr_load(...)
tosr_load(...)
... |
Web of Science or Scopus files |
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.
Sebastian Robledo
## Not run: my_tosr_load <- tosr_load("co-citation_209.txt", "co-citation_380.bib") ## End(Not run)
## Not run: my_tosr_load <- tosr_load("co-citation_209.txt", "co-citation_380.bib") ## End(Not run)
Compute tree of science using SAP algorithm. see: https://revistas.unal.edu.co/index.php/ingeinv/article/view/77718/0
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 |
Dataframe with tree of science
Sebastian Robledo
## Not run: my_tos <- tosSAP(my_tos_load$graph, my_tos_load$df, my_tos_load$nodes) ## End(Not run)
## Not run: my_tos <- tosSAP(my_tos_load$graph, my_tos_load$df, my_tos_load$nodes) ## End(Not run)