Normalize journals data: journal name, and ISSN. Two or more journals with the same ISSN will receive the most common Journal Name, then two or more journals with the same name will receive the most common ISSN.

normalizeJournals(
  dataframe,
  journalName = "titulo.do.periodico.ou.revista",
  issn = "issn"
)

Arguments

dataframe

data imported with readLattes() then getArtigosPublicados()

journalName

variable with journal name

issn

variable with issn

Value

data frame

Details

DETAILS

See also

Examples

if(interactive()){ data(latesXML) al <- lapply(xmlsLattes, getArtigosPublicados) adf <- dplyr::bind_rows(al) head( normalizeByDoi(dataframe=adf, issn='issn', journalName= 'titulo.do.periodico.ou.revista') ) }