If you put the following URL in your CrossRef address, you will get 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 want to extract a DOI list (identification of digital objects) in data.frame in R. I want to do this using one of the common R xml packages
library(XML) or library(tm)
I tried
doc<-xmlTreeParse(file) top<-xmlRoot(doc)
but can't figure out how to get out of here
top[[1]]["doi"]
does not work.
Etienne Low-Décarie
source share