-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmotivations.Rmd
130 lines (96 loc) · 2.29 KB
/
motivations.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
---
title: "flextable package"
subtitle: "a grammar to produce tabular reporting from R"
date: "`r Sys.Date()`"
output:
xaringan::moon_reader:
css: ['default', 'static/ardata-remark.css']
---
---
## Motivations
.marker-writting[
Provide an R grammar for tabular reporting
]
.row[
.col-xs-6[
```{r}
ft <- head(iris, n = 3) %>%
flextable() %>%
color(color = "#006699", part = "header") %>%
colformat_num(
col_keys = c("Sepal.Length", "Sepal.Width",
"Petal.Length", "Petal.Width"),
digits = 1)
```
]
.col-xs-6[
```{r echo=FALSE}
ft
```
]
]
.row[
.col-xs-6[
.marker-writting[
Enable its usage in R Markdown documents with outputs to
]
.row[
.col-xs-3[
<img src="https://www.ardata.fr/img/illustrations/html5.svg" width="50">
]
.col-xs-3[
<img src="https://www.ardata.fr/img/illustrations/word.svg" width="50">
]
.col-xs-3[
<img src="https://www.ardata.fr/img/illustrations/powerpoint.svg" width="50">
]
.col-xs-3[
<img src="https://www.ardata.fr/img/illustrations/pdf.svg" width="50">
]
]
<pre>
<code class="r hljs remark-code">
---
title: RMD document with iris as a flextable
---
```r
flextable::flextable(iris)
```
</code>
</pre>
]
.col-xs-6[
.marker-writting[
Enable creation of simple and complex tables
]
```{r echo=FALSE}
library(flextable)
library(data.table)
library(magrittr)
data_CO2 <- dcast(as.data.table(CO2),
Treatment + conc ~ Type, value.var = "uptake", fun.aggregate = mean)
data_CO2 <- as_grouped_data(x = data_CO2, groups = c("Treatment"))
zz <- as_flextable( data_CO2 ) %>%
bold(j = 1, i = ~ !is.na(Treatment), bold = TRUE, part = "body" ) %>%
bold(part = "header", bold = TRUE ) %>%
width(width = 1.5)
zz <- zz %>%
compose(i = ~ is.na(Treatment), j = "Quebec",
value = as_paragraph(
minibar(Quebec),
" ",
as_chunk(Quebec, formater = function(x) sprintf("%.01f", x))
)
) %>%
compose(i = ~ is.na(Treatment), j = "Mississippi",
value = as_paragraph( minibar(Mississippi),
" ",
as_chunk(Mississippi,
formater = function(x) sprintf("%.01f", x) )
)
) %>%
align(j = 2:3, align = "left")
plot(zz)
```
]
]