Embedding flexdashboard in pkgdown site

[This article was first published on Rami Krispin, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

In the previous post, I demonstrated how to deploy a flexdashboard dashboard (or basically, any R Markdown format) in Github Pages. The focus of this post is on embedding flexdashboard oin pkgdown site. The pkgdown package is another great R Markdown format that enables us to quickly warp package information (documentation, vignettes, etc.) into a web format.

Motivation

Why would you like to embed a flexdashboard dashboard in a pkgdown site? There are few reasons that I can think about, for example:

  • Provide a summary and analysis of the package datasets
  • Demonstrate the use case of the package functionality

My motivation for embedding flexdashboard into my pkgdown site was the first option above. A few weeks ago, while I was working on the coronavirus and covid19italy packages, I created a dashboard for each package with flexdashboard (Coronavirus and Covid19 Italy dashboards). As flexdashboard is another R Markdown format, I was looking for a method to render flexdashboard as one of the package vignettes. That did not work (or render) as I expected, but I found a workaround for that by using the HTML iframe function.

Embedding flexdashboard with iframe

The iframe function is an HTML for displaying a web page within a web page. To embed flexdashboard in pkgdown website, you will need:

  • A deployed flexdashboard with access URL (see this post for instruction for deployment of flexdashboard on Github Pages)
  • A rendered pkgdown

Once you have an end URL for the deployed flexdashboard dashboard (or generally any R Markdown format, Shiny app or any website), it is straightforward to deploy it by creating a dedicated vignette for embedding the dashboard as an article. The following example demonstrate step-by-step how to do it. We will start by creating a new vignette to host the dashboard. We will use the use_vignette function from the usethis package inside your package project:

usethis::use_vignette(name = "dashboard", title = "Your Dashboard Name")

This function created an R Markdown tembplate file named dashboard.Rmd inside the vignettes folder:

dashboard.Rmd

---
title: "Your Dashboard Name"
output: rmarkdown::html_vignette
vignette: >
  %\VignetteIndexEntry{Your Dashboard Name}
  %\VignetteEngine{knitr::rmarkdown}
  %\VignetteEncoding{UTF-8}
---

```{r, include = FALSE}
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
```

```{r setup}
library(your_package_name)
```

Next, we will edit the vignette template by removing the R code chunks with basic HTML code, setting iframe function:

dashboard.Rmd

---
title: "Your Dashboard Name"
output: rmarkdown::html_vignette
vignette: >
  %\VignetteIndexEntry{Your Dashboard Name}
  %\VignetteEngine{knitr::rmarkdown}
  %\VignetteEncoding{UTF-8}
---

<style>
.dashboard {
  position: fixed;
  left: 0;
  top: 50px;
  bottom: 0;
  right: 0;
}
.dashboard iframe {
  width: 100%;
  height: 100%;
  border: none;
}
</style>

<div class="dashboard"> 
<iframe src="https://your.flexdashboard.url/">
</iframe>
</div>

The HTML code has two components, style, and iframe. As the name implies, the style component set the page style and layout (position, size, etc.). The current setting will display the dashboard in full size. In the iframe component, you simply need to set the flexdashboard URL address.

Once rendering the pkgdown files with the build_site function, you should be able to view the dashboard under the article tab.

Here is an example for using this method for embedding the Covid19 Italy Dashboard on the covid19italy pkgdown website:

To leave a comment for the author, please follow the link and comment on their blog: Rami Krispin.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)