
Track Publication Years from References
Source:R/track_publication_year_form_references.R
track_publications_year_from_references.Rd
Processes citation data from network objects to extract and fetch publication years of cited references. Handles both Web of Science and OpenAlex data sources automatically.
Value
A tbl_graph
object with added CR_PY
column containing publication years
of cited references, separated by pipes ("|") for multiple references
Examples
if (FALSE) { # \dontrun{
# Process Web of Science network data
network_with_years <- track_publications_year_from_references(network_wos)
# Process OpenAlex network data
network_with_years <- track_publications_year_from_references(network_oa)
# Specify custom column names
network_with_years <- track_publications_year_from_references(
network,
cr_column = "references",
py_column = "year"
)
} # }