我正在尝试嵌入通过googleVis
包创建的动态图表,但没有任何成功。举个例子,我试图复制相同的动态图表:
http://takahashik.blogspot.com.br/2011/01/googlevis-example-for-data-iris_10.html
我正在使用以下脚本:
r <- gvisMotionChart(iris, "Species", "time")
plot(r) # just to check that the chart is working properly
gadget = createGoogleGadget(r)
cat(gadget, file="gadget.html")
然后我将gadget.html
文件上传到我的Dropbox并生成一个链接以公开分享。在我的谷歌网站中,我打开要嵌入图表的页面并执行以下操作:
Insert -> More Gadgets -> Add gadget by URL
然后当我将Dropbox链接粘贴到它时,
我收到以下错误:
Unsupported feature: org.apache.shindig.common.xml.XmlException: The entity name must immediately follow the '&' in the entity reference. At: (13,51)
所以我检查了这个错误,我一直看到的一般解决方案是用html代码中的&
替换任何&
因为任何原因(我从未使用过html或任何东西)类似)。尽管如此,我确实得到了同样的错误。我替换了我的文件中的&
,再次上传,共享等等,同样的错误不断出现。
Unsupported feature: org.apache.shindig.common.xml.XmlException: The entity name must immediately follow the '&' in the entity reference. At: (13,51)
对此有任何简单的解决方案吗?