2022-05-14 04:46:49 +08:00
# Communicate {#sec-communicate-intro .unnumbered}
2016-04-21 21:01:34 +08:00
2022-05-14 04:46:49 +08:00
```{r}
#| echo: false
2023-07-13 23:52:21 +08:00
2022-05-14 04:46:49 +08:00
source("_common.R")
```
2016-02-12 06:31:34 +08:00
2022-11-13 04:08:58 +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, and visualization.
2021-02-21 23:40:40 +08:00
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
2022-05-14 04:46:49 +08:00
```{r}
2022-08-29 18:24:32 +08:00
#| label: fig-ds-communicate
2022-05-14 04:46:49 +08:00
#| echo: false
2023-05-26 23:44:08 +08:00
#| fig-cap: |
2022-08-29 18:24:32 +08:00
#| Communication is the final part of the data science process; if you
#| can't communicate your results to other humans, it doesn't matter how
#| great your analysis is.
2023-05-26 23:44:08 +08:00
#| fig-alt: |
2022-12-05 02:05:38 +08:00
#| A diagram displaying the data science cycle with
2022-08-29 18:24:32 +08:00
#| communicate highlighed in blue.
#| out.width: NULL
2022-05-14 04:46:49 +08:00
2022-08-29 18:24:32 +08:00
knitr::include_graphics("diagrams/data-science/communicate.png", dpi = 270)
2016-07-19 22:39:00 +08:00
```
2023-03-28 06:40:33 +08:00
Communication is the theme of the following two chapters:
2016-08-15 23:14:25 +08:00
2022-11-13 04:08:58 +08:00
- In @sec-quarto, you will learn about Quarto, a tool for integrating prose, code, and results.
You can use Quarto for analyst-to-analyst communication as well as analyst-to-decision-maker communication.
Thanks to the power of Quarto formats, you can even use the same document for both purposes.
2021-02-21 23:40:40 +08:00
2022-11-13 04:08:58 +08:00
- In @sec-quarto-formats, you'll learn a little about the many other varieties of outputs you can produce using Quarto, including dashboards, websites, and books.
2021-02-21 23:40:40 +08:00
2022-11-13 04:08:58 +08:00
These chapters focus mostly on the technical mechanics of communication, not the really hard problems of communicating your thoughts to other humans.
2021-02-21 23:40:40 +08:00
However, there are lot of other great books about communication, which we'll point you to at the end of each chapter.