I noticed that my knitted html dashboards appeared to be corrupted in Chrome, I get this error message when I try to open the html file:
The html doc opens in Internet Explorer sans the interactivity. The problem appears to be ggplotly(shocker), but I am not sure how else to troubleshoot. In my reproducible example, the Rmd script with the ggplotly function commented out renders normally, but when I uncomment it, I get the RESULT_CODE_KILLED_BAD_MESSAGE error.
I have already tried knitting from different folders, uninstalling and reinstalling the latest Windows versions of both R and R Studio, clearing my cache. Any ideas as to what is going on here?
---
title: "ggplotly MAD"
author: "Dan"
---
```{r}
library(plotly)
mt_graph <- mtcars %>%
ggplot(aes(x = mpg,
y = cyl))+
geom_point()
mt_graph
#ggplotly(mt_graph)
```