There is a blog entry which describes embedding from the plotly API for R into R markdown. I just used the code to create the iframe for an html document
When I ha
I had to add a ".embed?width=550&height=550" after my url to make it work. See below
```{r} library("knitr") library("devtools") url<-"https://plot.ly/yourplothere.embed?width=550&height=550" plotly_iframe <- paste("", sep = "") ``` `r I(plotly_iframe)`