Skip to contents

This function reimports a csv file that was tagged and deduplicated by CiteSource. It allows to continue with further analyses without repeating that step, and also allows users to make any manual corrections to tagging or deduplication. Note that this function only works on CSV files that were written with export_csv(..., separate = NULL)

Usage

reimport_csv(filename)

Arguments

filename

Name (and path) of CSV file to be reimported, should end in .csv

Examples

if (interactive()) {
  dedup_results <- dedup_citations(citations, merge_citations = TRUE)
  export_csv(dedup_results, "citations.csv")
  unique_citations <- reimport_csv("citations.csv")
}