Reputation: 11
---
title: heatmaply and flexdashboard don't mix...
output:
flexdashboard::flex_dashboard
---
### Chart 1
```{r}
library(heatmaply)
heatmaply(mtcars)
I saw this question (2018):
presumably they are related...
Upvotes: -1
Views: 1153
Reputation: 11
I used to have this for code: ggplotly(x)
which caused the error.
I added ggplotly(x, height=500, width=1000)
and the error went away.
Upvotes: 1