I get the following error when trying to open an html document with knitr in Mozilla Firefox. The error is the result of a graph element consisting of a plotly
package.
unknownError: error occurred while processing 'getCachedMessages: out of memory
The entire contents of the rmarkdown file (by 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 latest version of Firefox. It seems that I have no problem viewing other pages with plot elements. The page works in IE, no problem.
source share