-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path80_communicating.rmd
81 lines (30 loc) · 2.12 KB
/
80_communicating.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
# (PART) Communication {-}
# Communicating your results {#communicating}
## Introduction
You've imported your data, tidied it, and then modelled and visualized it. You've now got an understanding of what it's telling you. Time to communicate your results!
## R
### Tables
https://twitter.com/AllieSherier/status/1098988779833040903
<blockquote class="twitter-tweet" data-lang="en"><p lang="en" dir="ltr">Does anyone regularly make publishable/exportable tables in R? I have approached this a few times over the last year, but I would really like to learn how to make tables efficiently. <a href="https://twitter.com/hashtag/rstats?src=hash&ref_src=twsrc%5Etfw">#rstats</a> (Picture is a kind of example of tables I am talking about.) <a href="https://t.co/48zr1BIf1H">pic.twitter.com/48zr1BIf1H</a></p>— Allie Sherier (/@/AllieSherier) <a href="https://twitter.com/AllieSherier/status/1098988779833040903?ref_src=twsrc%5Etfw">February 22, 2019</a></blockquote>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
### Packages
#### `{gt}`
**package**
CRAN page: []()
github page: [Easily generate information-rich, publication-quality tables from R](https://github.com/rstudio/gt)
**articles**
[{gt} reference page](https://gt.rstudio.com/)
#### `{gtsummary}`
**package**
CRAN page: [gtsummary: Presentation-Ready Data Summary and Analytic Result Tables](https://cloud.r-project.org/web/packages/gtsummary/index.html)
github page: [ddsjoberg/gtsummary](https://github.com/ddsjoberg/gtsummary)
**articles**
[{gtsummary} reference page](http://www.danieldsjoberg.com/gtsummary/)
#### `{kableExtra}`
**package**
CRAN page: [kableExtra: Construct Complex Table with 'kable' and Pipe Syntax](https://cran.r-project.org/package=kableExtra)
github page: [Construct Complex Table with knitr::kable() + pipe](https://github.com/haozhu233/kableExtra)
vignette: Hao Zhu, 2019-03-15, [Create Awesome HTML Table with knitr::kable and kableExtra](https://cran.r-project.org/web/packages/kableExtra/vignettes/awesome_table_in_html.html)
**articles**
https://haozhu233.github.io/kableExtra/
-30-