I'm trying to grab a list of sheets in a public Google Spreadsheet from a spreadsheets API XML feed using R, and just don't have a feel for how to do it...
More by luck (and cut and paste!) than judgement, I've got as far as importing the feed, and (using a crib from http://www.mail-archive.com/r-help@r-project.org/msg108087.html regarding default namespaces) got some sort of list of spreadsheet items item:
ssKey='0AmbQbL4Lrd61dDBfNEFqX1BGVDk0Mm1MNXFRUnBLNXc'
ssURL=paste(sep="",'http://spreadsheets.google.com/feeds/worksheets/',ssKey,'/public/basic')
ssd=xmlTreeParse(ssURL,useInternal=TRUE)
nodes=getNodeSet(ssd,"//x:entry","x")
titles=sapply(nodes, function(x) xmlSApply(x, xmlValue))
Here's what I get as a result:
[,1]
id "https://spreadsheets.google.com/feeds/worksheets/0AmbQbL4Lrd61dDBfNEFqX1BGVDk0Mm1MNXFRUnBLNXc/public/basic/od6"
updated "2011-08-28T16:03:50.190Z"
category ""
title "FP1 times"
content "FP1 times"
link ""
link ""
link ""
link ""
[,2]
id "https://spreadsheets.google.com/feeds/worksheets/0AmbQbL4Lrd61dDBfNEFqX1BGVDk0Mm1MNXFRUnBLNXc/public/basic/od7"
updated "2011-08-28T16:03:50.190Z"
category ""
title "FP1 Classification"
content "FP1 Classification"
link ""
link ""
link ""
link ""
[,3]
id
The question is, how do I create a data frame, or print out a tidy list, that displays sheet titles and IDs, something like:
sheetName sheet.Id
FP1 times od6
FP1 Classification od7
where od6 and od7 are identifiers that appear at the end of the id element.