Extract academic's papers presentation, from XML file converted to R list.
getApresentacaoTrabalho(curriculo)
curriculo | XML exported from Lattes imported to R as list. |
---|
data frame
Curriculum without this information will return NULL.
if(interactive()){ data(xmlsLattes) # to import from one curriculum getApresentacaoTrabalho(xmlsLattes2[[2]]) # to import from two or more curricula lapply(xmlsLattes, getApresentacaoTrabalho) %>>% bind_rows %>>% as_tibble }