forked from hadley/r4ds
-
Notifications
You must be signed in to change notification settings - Fork 10
/
communicate.Rmd
29 lines (20 loc) · 1.55 KB
/
communicate.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
# (PART) Communicate {-}
# Introduction {#communicate-intro}
So far, you've learned the tools to get your data into Python, tidy it into a form convenient for analysis, and then understand your data through transformation, visualisation and modelling. However, it doesn't matter how great your analysis is unless you can explain it to others: you need to __communicate__ your results.
```{r echo = FALSE, out.width = "75%"}
knitr::include_graphics("diagrams/data-science-communicate.png")
```
Communication is the theme of the following four chapters:
* In [Markdown], you will learn about Markdown, a simple tool for prose and
results. You can use Markdown in VS Code to cumminicate.
* In [Graphics for communication], you will learn how to take your exploratory
graphics and turn them into expository graphics, graphics that help the
newcomer to your analysis understand what's going on as quickly and
easily as possible.
* In [Markdown formats], you'll learn a little about the many other varieties
of outputs you can produce using Markdown, including dashboards, websites,
and books.
* We'll finish up with [Markdown workflow], where you'll learn about the
"analysis notebook" and how to systematically record your successes and
failures so that you can learn from them.
Unfortunately, these chapters focus mostly on the technical mechanics of communication, not the really hard problems of communicating your thoughts to other humans. However, there are lot of other great books about communication, which we'll point you to at the end of each chapter.