Hi all,
Hopefully a quite straight forward question here.
I am using the flex dashboard template and I insert a ggplot graph from my environment.
I run the chunk and the graph displays clearly.
Problem is, I want to bring this graph to a Shiny Environment. So, I save, then render. The file will not render correctly and I get this answer "Line 19 Error in eval(expr, envir, enclos): object 'finished' not found calls: ...handle -> withCallingHandlers -> with visible -> eval ->eval Execution halted"
and the code is listed below:
---
title: "Untitled"
output:
flexdashboard::flex_dashboard:
orientation: columns
vertical_layout: fill
---
```{r setup, include=FALSE}
library(flexdashboard)
```
Column {data-width=650}
-----------------------------------------------------------------------
### Chart A
```{r}
Finished
```
Column {data-width=350}
-----------------------------------------------------------------------
### Chart B
```{r}
```
### Chart C
```{r}
```
Thanks legends.