首页 > 解决方案 > 渲染图不出现

问题描述

我正在使用下面的代码来渲染绘图,但绘图没有出现。

---
title: "Untitled"
author: "George"
date: "12/3/2018"
output:
    flexdashboard::flex_dashboard:
    orientation: rows
runtime: shiny
---

    ```{r global, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(flexdashboard)
library(dplyr)
library(GGally)


x <- c(1,2,3)
y <- c(11,22,33)
z <- data.frame(x, y)
```

Introduction
=======================================================================

### General info

- A

- B



Corr
=======================================================================

### Correlation
```{r include=TRUE, results='hide'}
renderPlot({
    GGally::ggpairs(z)
})

```

标签: rshinyflexdashboard

解决方案


我会删除你在块选项中的内容:

```{r}

renderPlot({
    GGally::ggpairs(z)
})

```

推荐阅读