R/sap_tos.R

Defines functions sap_tos

#' sap
#'
#' sap algorithm
#'
#' sap algorithm represents the metaphor of the
#' tree sap
#'
#' @param file the isi file (txt) downloaded from web of science
#'
#' @author Sebastian Robledo
#'
#' @return a dataframe with roots, trunk, and leaves
#'
#' @export

sap_tos <- function(file) {
  
  isi_file <- sap_load(file)
  
  graph_file <- sap_graph(isi_file)
  
  sap_file <- sap_process(graph_file)
}
coreofscience/r-sap documentation built on Sept. 24, 2020, 7:31 a.m.