【发布时间】:2020-09-20 10:06:56
【问题描述】:
我正在尝试使用格式与this page 类似的 r 创建一个 flexdashboard。
我在 Shiny 中使用了 flexdashboard。
---
title: "title"
output:
flexdashboard::flex_dashboard:
orientation: columns
vertical_layout: fill
runtime: shiny
---
```{r setup, include=FALSE}
library(flexdashboard)
library(lubridate)
library(viridis)
library(plotly)
library(tidytext)
library(readr)
library(tidyverse)
```
```{r global, include=FALSE}
# read global data
```
```{r wrangling-data}
```
Sidebar {.sidebar}
=====================================
```{r}
# shiny inputs defined here
```
Introduction
=====================================
### Intro
```{r}
```
Data
=====================================
```{r}
```
Conclusion
=====================================
```{r}
```
这会导致菜单项仍显示在顶部导航栏上。
但是,我想将导航宝贝移动到左侧,like this 并且还包括菜单项上的手风琴子菜单。
【问题讨论】:
标签: r shiny flexdashboard