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" )
dataframe | data imported with readLattes() then getArtigosPublicados() |
---|---|
journalName | variable with journal name |
issn | variable with issn |
data frame
DETAILS
if (FALSE) { 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') ) } }