R/cochrane2df.R

Defines functions cochrane2df

utils::globalVariables(c("Paper", "Tag", "content", "cont"))
cochrane2df <- function(D) {
  D <- D[nchar(D) > 0] # remove empty rows

  Papers <- which(substr(D, 1, 8) == "Record #") # first row of each document
  nP <- length(Papers) # number of documents

  rowPapers <- diff(c(Papers, length(D) + 1))

  numPapers <- rep(1:nP, rowPapers)

  DATA <- data.frame(Tag = substr(D, 1, 4), content = substr(D, 5, nchar(D)), Paper = numPapers)
  DATA$Tag <- gsub(" ", "", gsub(":", "", DATA$Tag))
  df <- DATA %>%
    group_by(Paper, Tag) %>%
    summarise(cont = paste(content, collapse = "---", sep = "")) %>%
    arrange(Tag, Paper) %>%
    pivot_wider(names_from = Tag, values_from = cont) %>%
    ungroup() %>%
    rename(
      "PY" = "YR",
      "UT" = "ID",
      "ID" = "KY",
      "URL" = "US",
      "DI" = "DOI",
      "NR" = "NO"
    )
  df <- as.data.frame(df)

  df$PY <- as.numeric(df$PY)

  ### replace "---" with ";"
  tagsComma <- c("AU", "ID")
  df1 <- data.frame(lapply(df[tagsComma], function(x) {
    gsub("---", ";", x)
  }))

  ### replace "---" with " "
  otherTags <- setdiff(names(df), tagsComma)
  df2 <- data.frame(lapply(df[otherTags], function(x) {
    trimES(gsub("---", " ", x))
  }), stringsAsFactors = FALSE)
  df <- cbind(df1, df2)
  rm(df1, df2)

  df$ID <- gsub(" ;", ";", gsub("; ", ";", gsub("\\[[^\\]]*\\]", "", df$ID, perl = TRUE)))

  df$DB <- "COCHRANE"

  # Authors
  # df$AU <- trimES(gsub("-","",df$AU))

  # Toupper
  DI <- df$DI
  df <- data.frame(lapply(df, toupper), stringsAsFactors = FALSE)
  df$DI <- gsub(" ", "", DI)

  df <- df[!(names(df) %in% c("Paper", "Reco"))]

  df$DE <- df$ID

  df$JI <- df$J9 <- df$SO

  return(df)
}

Try the bibliometrix package in your browser

Any scripts or data that you put into this service are public.

bibliometrix documentation built on June 8, 2025, 10:58 a.m.