-
Notifications
You must be signed in to change notification settings - Fork 0
/
plot.Rmd
54 lines (41 loc) · 951 Bytes
/
plot.Rmd
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
title: "plot"
subtitle: ""
author: ""
output:
xaringan::moon_reader:
seal: FALSE
lib_dir: libs
css: [default, hygge, ninjutsu]
nature:
ratio: 16:10
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
---
```{r, include = F}
knitr::opts_chunk$set(fig.width = 6, message = FALSE, warning = FALSE, comment = "", cache = F)
library(flipbookr)
library(tidyverse)
load("current_image.Rdata")
```
```{r, echo = F, eval = TRUE , message = F, warning = F}
xaringanExtra::use_share_again()
```
```{r, include = F}
readLines("plot.R") %>%
paste(collapse = "
") %>%
code_parse() %>%
parsed_return_partial_code_sequence() ->
the_code_seq
```
`r chunk_reveal(code_seq = the_code_seq, chunk_name = "plot", break_type = "auto")`
```{css, eval = TRUE, echo = FALSE}
.remark-code{line-height: 1.5; font-size: 110%}
@media print {
.has-continuation {
display: block;
}
}
```