I'm trying to read the table on this site:
http://spacefem.com/pregnant/due.php?use=EDD&m=09&d=10&y=16
I use rvest
, but quickly get an error:
library(rvest)
read_html("http://spacefem.com/pregnant/due.php?use=EDD&m=09&d=10&y=16")
Error: Name spoiler:3tbt4d3m is not XML Namespace compliant [202]
What does this error mean, and is there anything I can do to get around it?
I've gotten as far as pinpointing the internal function causing the error: xml2:::doc_parse_raw
. However, xml2:::doc_parse_raw
is simply a call to internal C code, making debugging of this issue substantially more difficult.