2018年1月の最も簡単な解決策は、tabsetsと、self_contained: true
オプションをRMarkdown YAML(this documentationを参照)に使用することです。
ここには、そのように見えるものを示すための画像がいくつかあります。このポストの最後に、この例を生成するために使用されたRMarkdownがあります。
ここでは、この例を生成するために使用されるRMarkdownです。
---
title: "Example"
output:
html_document:
self_contained: true
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(magrittr)
library(tidyverse)
library(plotly)
```
# Plots by Location {.tabset}
## First Location
```{r first_location_plot}
first_plot <- iris %>%
filter(Species == "setosa") %>%
ggplot(mapping = aes(x = Sepal.Length, y = Sepal.Width)) +
geom_point(color = 'blue')
ggplotly(first_plot)
```
## Second Location
```{r second_location_plot}
second_plot <- iris %>%
filter(Species == "virginica") %>%
ggplot(mapping = aes(x = Sepal.Length, y = Sepal.Width)) +
geom_point(color = 'red')
ggplotly(second_plot)
```