r4ds/communicate.Rmd

33 lines
1.8 KiB
Plaintext
Raw Normal View History

2016-04-27 15:04:29 +08:00
# (PART) Communicate {-}
2016-04-21 21:01:34 +08:00
2016-08-18 20:55:19 +08:00
# Introduction {#communicate-intro}
2016-02-12 06:31:34 +08:00
2016-08-26 03:31:24 +08:00
So far, you've learned the tools to get your data into R, 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.
2016-07-19 22:39:00 +08:00
```{r echo = FALSE, out.width = "75%"}
knitr::include_graphics("diagrams/data-science-communicate.png")
```
2016-08-23 05:08:16 +08:00
Communication is the theme of the following four chapters:
2016-08-23 05:08:16 +08:00
* In [R Markdown], you will learn about R Markdown, a tool for integrating
prose, code, and results. You can use R Markdown in notebook mode for
analyst-to-analyst communication, and in report mode for
analyst-to-decision-maker communication. Thanks to the power of R Markdown
formats, you can even use the same document for both purposes.
2016-08-23 05:08:16 +08:00
* 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.
2016-08-23 05:08:16 +08:00
* In [R Markdown formats], you'll learn a little about the many other varieties
of outputs you can produce using R Markdown, including dashboards, websites,
and books.
2016-08-16 03:37:43 +08:00
2016-08-26 05:44:14 +08:00
* We'll finish up with [R 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.
2016-05-02 22:15:49 +08:00
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.