Extract Participation in Projects from XML file converted to R list.

getParticipacaoProjeto(curriculo)

Arguments

curriculo

XML exported from Lattes imported to R as list.

Value

data frame

Details

Curriculum without this information will return NULL.

Examples

if (FALSE) { if(interactive()){ data(xmlsLattes) # to import from one curriculum getParticipacaoProjeto(xmlsLattes[[499]]) # to import from two or more curricula lt <- lapply(xmlsLattes, getParticipacaoProjeto) head(bind_rows(lt)) } }