knitr::opts_chunk$set(echo = TRUE) require(revtools) options(width=50, width.cutoff=50, digits = 3)
Revtools is an Rpackage that has a build in application to help with duplicate removal. Informormation can be found here: https://revtools.net/deduplication.html#locating-duplicates.
A detailed description is provided on how to remove the duplicates.
If this is your first time using this, copy-pase the code below into R:
# Install and load revtools package install.packages("revtools")
The application works with a user interface. The 4 lines of code below allow to open it and save the output. Much of it is descirbed in the link above.
Note that the app does not allow to check similarity between e.g. titles, while accounting for year and authors simultaniously.
Once the app is opened, duplicates can be removed;
# load the pacakge in R library("revtools") # open the application. Once finished and closed, the results will be stored in 'refs_new' # refs_new <- screen_duplicates() # nrow(refs_new) # write_bibliography(refs_new,'this_is_the_file_name.bib',format = 'bib') # save as bib/ris
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.