-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsummary_report.Rmd
More file actions
38 lines (22 loc) · 833 Bytes
/
summary_report.Rmd
File metadata and controls
38 lines (22 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
title: "Summary Report"
author: "Airline: `r input$airlines`"
date: "`r format(Sys.time(), '%d %B, %Y')`"
output: pdf_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = F)
```
```{r Interval1, out.width = "510px"}
saveWidget(bar_graphD3(), file= 'temp_Pivot_single.html')
respivot = webshot::webshot('temp_Pivot_single.html','my-screenshot-Pivot_single.png', zoom = 1.2)
knitr::include_graphics(respivot)
```
```{r Interval_pie,eval=input$OneMore, out.width = "510px"}
saveWidget(pie_graph(), file= 'temp_Pivot_single_pie.html')
respivot_pie = webshot::webshot('temp_Pivot_single_pie.html','my-screenshot-Pivot_single_pie.png', zoom = 1.2)
knitr::include_graphics(respivot_pie)
```
```{r Interval2, warning = FALSE}
note_in_md_pdf(input$markdowninput)
```