Skip to content

Instantly share code, notes, and snippets.

View steam228's full-sized avatar
Focusing

André Rocha steam228

Focusing
View GitHub Profile
@steam228
steam228 / ddAlignment.r
Created January 26, 2024 16:30
This R script is designed to analyze and summarize data from two distinct datasets related to Distributed Design projects. The first dataset, 'DatasetSurvey1ProjectsCollection', contains detailed information about various design projects, including abstracts and evaluations. The script calculates scores for each project based on predefined Dist…
# Install and load necessary packages
if (!require("readxl")) install.packages("readxl")
if (!require("dplyr")) install.packages("dplyr")
if (!require("stringr")) install.packages("stringr")
if (!require("writexl")) install.packages("writexl")
if (!require("tidyr")) install.packages("tidyr")
library(readxl)
library(dplyr)
library(stringr)
library(writexl)
@steam228
steam228 / wosScopusMerge.r
Created November 29, 2021 16:25
R Bibliometrix WOS/SCOPUS merge
library(bibliometrix)
library(openxlsx)
setwd('/Volumes/PATHTO/')
getwd()
WOS_df <- convert2df(file = './WOS/wos.bib', dbsource = "wos", format = "bibtex")
SCOPUS_df <- convert2df(file = './SCOPUS/scopus.bib', dbsource = "scopus", format = "bibtex")
Merge_SCO_WOS <- mergeDbSources(SCOPUS_df, WOS_df, remove.duplicated=TRUE)