尝试在Mozilla Firefox中打开与knitr一起放置的html文档时,我收到以下错误.该错误是由plotly包组成的图元素的结果.
unknownError: error occurred while processing
'getCachedMessages: out of memory
Run Code Online (Sandbox Code Playgroud)
rmarkdown文件的全部内容(默认其他所有内容):
library(plotly)
library(ggplot2)
theData <- data.frame(A=1:26, B=letters, C=rnorm(26,19))
g<-ggplot(theData, aes(x=A, y=C)) +
geom_point()
ggplotly(g)
Run Code Online (Sandbox Code Playgroud)
我有最新版本的Firefox.我似乎没有查看其他页面上有图形元素的问题.该页面在IE中运行,没问题.