Displaying 1 result from an estimated 1 matches for "rss2reader".
Did you mean:
rhsqreader
2011 Apr 06
0
Curious treatment of entities in xmlTreeParse
...ows that the & references have been translated to "&" while other
entity refs have not.
a<-readLines(url(as.character(feeds[2,2])))
t<-XML::xmlTreeParse(a, replaceEntities=FALSE, asText=TRUE)
I'm guessing this is what breaks things when I try to do things with tm:
rss2Reader <- readXML(
spec = list(
Author = list("node", "/item/creator"),
Content = list("node", "/item/description"),
DateTimeStamp = list("function",function(x) as.POSIXlt(Sys.time(),
tz = "GMT")),
Heading = list("node",...