Extract General Data from XML file converted to R list.
getDadosGerais(curriculo)
curriculo | XML exported from Lattes imported to R as list. |
---|
data frame
Curriculum without this information will return NULL.
if (FALSE) { if(interactive()){ data(xmlsLattes) # to import from one curriculum getDadosGerais(xmlsLattes[[499]]) # to import from two or more curricula lt <- lapply(xmlsLattes, getDadosGerais) head(bind_rows(lt)) } }