Extract Short Duration Course from XML file converted to R list.
getCursoCurtaDuracao(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 getCursoCurtaDuracao(xmlsLattes[[2]]) # to import from two or more curricula lt <- lapply(xmlsLattes, getCursoCurtaDuracao) head(bind_rows(lt)) }