I am getting the following error when trying to open an html document put together with knitr in Mozilla Firefox. The error is a result of the graph element composed with the plotly
package.
unknownError: error occurred while processing
'getCachedMessages: out of memory
The entire contents of the rmarkdown file (default everything else):
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)
I have the most recent version of Firefox. I don't seem to have trouble viewing other pages with plotly elements on them. The page works in IE, no problem.