If you put in your CrossRef email the following URL produces an XML file
"http://www.crossref.org/openurl?title=Science&aulast=Fernández&date=2009&multihit=true&pid=your.crossref.email"
An example file is available here:
crossref.xml
I wish to extract the list of DOI (Digital Object Identifies) into an data.frame in R. I wish to do so using one of the general R xml packages
library(XML) or library(tm)
I have tried
doc<-xmlTreeParse(file)
top<-xmlRoot(doc)
but can not figure out how to go from here
top[[1]]["doi"]
does not work.