Compare duplicate citations across sources, labels, and strings
Source:R/compare.R
compare_sources.Rd
Compare duplicate citations across sources, labels, and strings
Usage
compare_sources(
unique_data,
comp_type = c("sources", "strings", "labels"),
include_references = FALSE
)
Examples
if (interactive()) {
# Load example data from the package
examplecitations_path <- system.file("extdata", "examplecitations.rds", package = "CiteSource")
examplecitations <- readRDS(examplecitations_path)
# Deduplicate citations and compare sources
dedup_results <- dedup_citations(examplecitations)
compare_sources(unique_citations, comp_type = "sources")
}