Displaying 2 results from an estimated 2 matches for "periodofreport".
2008 May 02
1
How to parse XML
I would like to learn how to parse a mixed text/xml document I
downloaded from the sec.gov website (see example below). I would like
to parse this to get the value for each xml tag and then access it
within R, but I don't know much about xml so I don't even know where to
start debugging the errors I am getting in this example code. Can
anyone help me get started?
Thanks, Roger
ftp
2008 Jun 25
0
Memory allocation failed: Copying Node
...(filein) )
if(is.null(xml)) next
if(is.null(xml)) {
stop("File not processed: " %+% file)
}
processed=FALSE
owner <- tryCatch(
data.frame(datadate=xValHelper("periodOfReport"),
CIK=xValHelper("issuerCik"),
conm=xValHelper("issuerName"),
tic=xValHelper("issuerTradingSymbol")),
error...